@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version :Python 3.8\n "
1313"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 "
1515"PO-Revision-Date :2020-05-30 12:03+0000\n "
1616"Last-Translator :tomo, 2020\n "
1717"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -67,15 +67,12 @@ msgid ""
6767"absolute (like :file:`/usr/src/Python-1.5/Makefile`) or relative (like "
6868":file:`../../Tools/\\ */\\ *.gif`), and can contain shell-style wildcards. "
6969"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."
7173msgstr ""
72- "*pathname* (パスの指定を含んだ文字列でなければいけません) にマッチする、空の可能性のあるパス名のリストを返します。*pathname* は"
73- " (:file:`/usr/src/Python-1.5/Makefile` のように) "
74- "絶対パスでも、(:file:`../../Tools/\\ */\\ *.gif` のように) "
75- "相対パスでもよく、シェル形式のワイルドカードを含んでいてもかまいません。結果には (シェルと同じく) "
76- "壊れたシンボリックリンクも含まれます。結果がソートされるかどうかは、ファイルシステムによって異なります。"
7774
78- #: ../../library/glob.rst:51
75+ #: ../../library/glob.rst:53
7976msgid ""
8077"If *recursive* is true, the pattern\" ``**``\" will match any files and zero"
8178" or more directories, subdirectories and symbolic links to directories. If "
@@ -86,32 +83,32 @@ msgstr ""
8683"はあらゆるファイルや0個以上のディレクトリ、サブディレクトリおよびディレクトリへのシンボリックリンクにマッチします。パターンの末尾が "
8784":data:`os.sep` または :data:`os.altsep` の場合、ファイルは一致しません。"
8885
89- #: ../../library/glob.rst:57 ../../library/glob.rst:71
86+ #: ../../library/glob.rst:59 ../../library/glob.rst:73
9087msgid ""
9188"Raises an :ref:`auditing event <auditing>` ``glob.glob`` with arguments "
9289"``pathname``, ``recursive``."
9390msgstr ""
9491"引数 ``pathname``, ``recursive`` を指定して :ref:`監査イベント <auditing>` ``glob.glob`` "
9592"を送出します。 "
9693
97- #: ../../library/glob.rst:59
94+ #: ../../library/glob.rst:61
9895msgid ""
9996"Using the\" ``**``\" pattern in large directory trees may consume an "
10097"inordinate amount of time."
10198msgstr "パターン\" ``**``\" を大きなディレクトリツリーで使用するととてつもなく時間がかかるかもしれません。"
10299
103- #: ../../library/glob.rst:62
100+ #: ../../library/glob.rst:64
104101msgid "Support for recursive globs using\" ``**``\" ."
105102msgstr "\" ``**``\" を使った再帰的な glob がサポートされました。"
106103
107- #: ../../library/glob.rst:68
104+ #: ../../library/glob.rst:70
108105msgid ""
109106"Return an :term:`iterator` which yields the same values as :func:`glob` "
110107"without actually storing them all simultaneously."
111108msgstr ""
112109"実際には一度にすべてを格納せずに、:func:`glob` と同じ値を順に生成する :term:`イテレーター <iterator>` を返します。"
113110
114- #: ../../library/glob.rst:76
111+ #: ../../library/glob.rst:78
115112msgid ""
116113"Escape all special characters (``'?'``, ``'*'`` and ``'['``). This is useful"
117114" if you want to match an arbitrary literal string that may have special "
@@ -124,7 +121,7 @@ msgstr ""
124121"の特殊文字はエスケープされません。たとえば Windows では ``escape('//?/c:/Quo vadis?.txt')`` は "
125122"``'//?/c:/Quo vadis[?].txt'`` を返します。"
126123
127- #: ../../library/glob.rst:85
124+ #: ../../library/glob.rst:87
128125msgid ""
129126"For example, consider a directory containing the following files: "
130127":file:`1.gif`, :file:`2.txt`, :file:`card.gif` and a subdirectory "
@@ -136,7 +133,7 @@ msgstr ""
136133":file:`3.txt` だけを含んだサブディレクトリ :file:`sub` があった場合、:func:`glob` "
137134"は以下の結果を返します。パスに接頭する要素がどう維持されるかに注意してください。::"
138135
139- #: ../../library/glob.rst:103
136+ #: ../../library/glob.rst:105
140137msgid ""
141138"If the directory contains files starting with ``.`` they won't be matched by"
142139" default. For example, consider a directory containing :file:`card.gif` and "
@@ -145,10 +142,10 @@ msgstr ""
145142"ディレクトリが ``.`` で始まるファイルを含んでいる場合、デフォルトでそれらはマッチしません。例えば、 :file:`card.gif` と "
146143":file:`.card.gif` を含むディレクトリを考えてください::"
147144
148- #: ../../library/glob.rst:115
145+ #: ../../library/glob.rst:117
149146msgid "Module :mod:`fnmatch`"
150147msgstr ":mod:`fnmatch` モジュール"
151148
152- #: ../../library/glob.rst:116
149+ #: ../../library/glob.rst:118
153150msgid "Shell-style filename (not path) expansion"
154151msgstr "シェル形式の (パスではない) ファイル名展開"