@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version :Python 3.8\n "
13
13
"Report-Msgid-Bugs-To :\n "
14
- "POT-Creation-Date :2020-02-09 12:40 +0000\n "
14
+ "POT-Creation-Date :2020-09-05 14:59 +0000\n "
15
15
"PO-Revision-Date :2020-05-30 12:03+0000\n "
16
16
"Last-Translator :tomo, 2020\n "
17
17
"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -67,15 +67,12 @@ msgid ""
67
67
"absolute (like :file:`/usr/src/Python-1.5/Makefile`) or relative (like "
68
68
":file:`../../Tools/\\ */\\ *.gif`), and can contain shell-style wildcards. "
69
69
"Broken symlinks are included in the results (as in the shell). Whether or "
70
- "not the results are sorted depends on the file system."
70
+ "not the results are sorted depends on the file system. If a file that "
71
+ "satisfies conditions is removed or added during the call of this function, "
72
+ "whether a path name for that file be included is unspecified."
71
73
msgstr ""
72
- "*pathname* (パスの指定を含んだ文字列でなければいけません) にマッチする、空の可能性のあるパス名のリストを返します。*pathname* は"
73
- " (:file:`/usr/src/Python-1.5/Makefile` のように) "
74
- "絶対パスでも、(:file:`../../Tools/\\ */\\ *.gif` のように) "
75
- "相対パスでもよく、シェル形式のワイルドカードを含んでいてもかまいません。結果には (シェルと同じく) "
76
- "壊れたシンボリックリンクも含まれます。結果がソートされるかどうかは、ファイルシステムによって異なります。"
77
74
78
- #: ../../library/glob.rst:51
75
+ #: ../../library/glob.rst:53
79
76
msgid ""
80
77
"If *recursive* is true, the pattern\" ``**``\" will match any files and zero"
81
78
" or more directories, subdirectories and symbolic links to directories. If "
@@ -86,32 +83,32 @@ msgstr ""
86
83
"はあらゆるファイルや0個以上のディレクトリ、サブディレクトリおよびディレクトリへのシンボリックリンクにマッチします。パターンの末尾が "
87
84
":data:`os.sep` または :data:`os.altsep` の場合、ファイルは一致しません。"
88
85
89
- #: ../../library/glob.rst:57 ../../library/glob.rst:71
86
+ #: ../../library/glob.rst:59 ../../library/glob.rst:73
90
87
msgid ""
91
88
"Raises an :ref:`auditing event <auditing>` ``glob.glob`` with arguments "
92
89
"``pathname``, ``recursive``."
93
90
msgstr ""
94
91
"引数 ``pathname``, ``recursive`` を指定して :ref:`監査イベント <auditing>` ``glob.glob`` "
95
92
"を送出します。 "
96
93
97
- #: ../../library/glob.rst:59
94
+ #: ../../library/glob.rst:61
98
95
msgid ""
99
96
"Using the\" ``**``\" pattern in large directory trees may consume an "
100
97
"inordinate amount of time."
101
98
msgstr "パターン\" ``**``\" を大きなディレクトリツリーで使用するととてつもなく時間がかかるかもしれません。"
102
99
103
- #: ../../library/glob.rst:62
100
+ #: ../../library/glob.rst:64
104
101
msgid "Support for recursive globs using\" ``**``\" ."
105
102
msgstr "\" ``**``\" を使った再帰的な glob がサポートされました。"
106
103
107
- #: ../../library/glob.rst:68
104
+ #: ../../library/glob.rst:70
108
105
msgid ""
109
106
"Return an :term:`iterator` which yields the same values as :func:`glob` "
110
107
"without actually storing them all simultaneously."
111
108
msgstr ""
112
109
"実際には一度にすべてを格納せずに、:func:`glob` と同じ値を順に生成する :term:`イテレーター <iterator>` を返します。"
113
110
114
- #: ../../library/glob.rst:76
111
+ #: ../../library/glob.rst:78
115
112
msgid ""
116
113
"Escape all special characters (``'?'``, ``'*'`` and ``'['``). This is useful"
117
114
" if you want to match an arbitrary literal string that may have special "
@@ -124,7 +121,7 @@ msgstr ""
124
121
"の特殊文字はエスケープされません。たとえば Windows では ``escape('//?/c:/Quo vadis?.txt')`` は "
125
122
"``'//?/c:/Quo vadis[?].txt'`` を返します。"
126
123
127
- #: ../../library/glob.rst:85
124
+ #: ../../library/glob.rst:87
128
125
msgid ""
129
126
"For example, consider a directory containing the following files: "
130
127
":file:`1.gif`, :file:`2.txt`, :file:`card.gif` and a subdirectory "
@@ -136,7 +133,7 @@ msgstr ""
136
133
":file:`3.txt` だけを含んだサブディレクトリ :file:`sub` があった場合、:func:`glob` "
137
134
"は以下の結果を返します。パスに接頭する要素がどう維持されるかに注意してください。::"
138
135
139
- #: ../../library/glob.rst:103
136
+ #: ../../library/glob.rst:105
140
137
msgid ""
141
138
"If the directory contains files starting with ``.`` they won't be matched by"
142
139
" default. For example, consider a directory containing :file:`card.gif` and "
@@ -145,10 +142,10 @@ msgstr ""
145
142
"ディレクトリが ``.`` で始まるファイルを含んでいる場合、デフォルトでそれらはマッチしません。例えば、 :file:`card.gif` と "
146
143
":file:`.card.gif` を含むディレクトリを考えてください::"
147
144
148
- #: ../../library/glob.rst:115
145
+ #: ../../library/glob.rst:117
149
146
msgid "Module :mod:`fnmatch`"
150
147
msgstr ":mod:`fnmatch` モジュール"
151
148
152
- #: ../../library/glob.rst:116
149
+ #: ../../library/glob.rst:118
153
150
msgid "Shell-style filename (not path) expansion"
154
151
msgstr "シェル形式の (パスではない) ファイル名展開"