Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a9885da

Browse files
author
github-actions
committedJan 17, 2025
Update translations from Transifex
1 parent c788a84 commit a9885da

File tree

6 files changed

+13440
-13398
lines changed

6 files changed

+13440
-13398
lines changed
 

‎library/fnmatch.po

+26-26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2024, Python Software Foundation
2+
# Copyright (C) 2001-2025, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -16,7 +16,7 @@ msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.13\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2024-12-27 14:16+0000\n"
19+
"POT-Creation-Date: 2025-01-17 14:16+0000\n"
2020
"PO-Revision-Date: 2021-06-28 01:06+0000\n"
2121
"Last-Translator: 石井明久, 2024\n"
2222
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -109,15 +109,20 @@ msgstr ""
109109

110110
#: ../../library/fnmatch.rst:49
111111
msgid ""
112-
"Also note that :func:`functools.lru_cache` with the *maxsize* of 32768 is "
113-
"used to cache the compiled regex patterns in the following functions: :func:"
114-
"`fnmatch`, :func:`fnmatchcase`, :func:`.filter`."
112+
"Unless stated otherwise, \"filename string\" and \"pattern string\" either "
113+
"refer to :class:`str` or ``ISO-8859-1`` encoded :class:`bytes` objects. Note "
114+
"that the functions documented below do not allow to mix a :class:`!bytes` "
115+
"pattern with a :class:`!str` filename, and vice-versa."
115116
msgstr ""
116-
"以下の関数 :func:`fnmatch`, :func:`fnmatchcase`, :func:`.filter` では、 *最大"
117-
"サイズ* 32768の :func:`functools.lru_cache` をコンパイル済みの正規表現パター"
118-
"ンのキャッシュに使用していることにも注意してください。"
119117

120-
#: ../../library/fnmatch.rst:55
118+
#: ../../library/fnmatch.rst:54
119+
msgid ""
120+
"Finally, note that :func:`functools.lru_cache` with a *maxsize* of 32768 is "
121+
"used to cache the (typed) compiled regex patterns in the following "
122+
"functions: :func:`fnmatch`, :func:`fnmatchcase`, :func:`.filter`."
123+
msgstr ""
124+
125+
#: ../../library/fnmatch.rst:61
121126
msgid ""
122127
"Test whether the filename string *name* matches the pattern string *pat*, "
123128
"returning ``True`` or ``False``. Both parameters are case-normalized using :"
@@ -131,15 +136,15 @@ msgstr ""
131136
"テムが標準でどうなっているかに関係なく、大文字、小文字を区別して比較する場合"
132137
"には、 :func:`fnmatchcase` が使用できます。"
133138

134-
#: ../../library/fnmatch.rst:61
139+
#: ../../library/fnmatch.rst:67
135140
msgid ""
136141
"This example will print all file names in the current directory with the "
137142
"extension ``.txt``::"
138143
msgstr ""
139144
"次の例では、カレントディレクトリにある、拡張子が ``.txt`` である全てのファイ"
140145
"ルを表示しています::"
141146

142-
#: ../../library/fnmatch.rst:64
147+
#: ../../library/fnmatch.rst:70
143148
msgid ""
144149
"import fnmatch\n"
145150
"import os\n"
@@ -149,7 +154,7 @@ msgid ""
149154
" print(file)"
150155
msgstr ""
151156

152-
#: ../../library/fnmatch.rst:74
157+
#: ../../library/fnmatch.rst:80
153158
msgid ""
154159
"Test whether the filename string *name* matches the pattern string *pat*, "
155160
"returning ``True`` or ``False``; the comparison is case-sensitive and does "
@@ -159,33 +164,28 @@ msgstr ""
159164
"``True`` または ``False`` を返します。比較は大文字、小文字を区別し、 :func:"
160165
"`os.path.normcase` は適用しません。"
161166

162-
#: ../../library/fnmatch.rst:81
167+
#: ../../library/fnmatch.rst:87
163168
msgid ""
164-
"Construct a list from those elements of the :term:`iterable` *names* that "
165-
"match pattern *pat*. It is the same as ``[n for n in names if fnmatch(n, "
166-
"pat)]``, but implemented more efficiently."
169+
"Construct a list from those elements of the :term:`iterable` of filename "
170+
"strings *names* that match the pattern string *pat*. It is the same as ``[n "
171+
"for n in names if fnmatch(n, pat)]``, but implemented more efficiently."
167172
msgstr ""
168-
"パターン *pat* にマッチする :term:`iterable` の *names* を要素とするリストを"
169-
"構築します。``[n for n in names if fnmatch(n, pat)]`` と同じですが、より効率"
170-
"よく実装されています。"
171173

172-
#: ../../library/fnmatch.rst:89
174+
#: ../../library/fnmatch.rst:95
173175
msgid ""
174176
"Return the shell-style pattern *pat* converted to a regular expression for "
175-
"using with :func:`re.match`."
177+
"using with :func:`re.match`. The pattern is expected to be a :class:`str`."
176178
msgstr ""
177-
"シェルスタイルのパターン *pat* を、:func:`re.match` で使用するための正規表現"
178-
"に変換して返します。"
179179

180-
#: ../../library/fnmatch.rst:92
180+
#: ../../library/fnmatch.rst:98
181181
msgid "Example:"
182182
msgstr "例:"
183183

184-
#: ../../library/fnmatch.rst:106
184+
#: ../../library/fnmatch.rst:112
185185
msgid "Module :mod:`glob`"
186186
msgstr ":mod:`glob` モジュール"
187187

188-
#: ../../library/fnmatch.rst:107
188+
#: ../../library/fnmatch.rst:113
189189
msgid "Unix shell-style path expansion."
190190
msgstr "Unix シェル形式のパス展開。"
191191

‎library/importlib.po

+226-226
Large diffs are not rendered by default.

‎library/pdb.po

+118-119
Large diffs are not rendered by default.

‎library/string.po

+218-214
Large diffs are not rendered by default.

‎library/turtle.po

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2024, Python Software Foundation
2+
# Copyright (C) 2001-2025, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-12-27 14:16+0000\n"
16+
"POT-Creation-Date: 2025-01-17 14:16+0000\n"
1717
"PO-Revision-Date: 2021-06-28 01:16+0000\n"
1818
"Last-Translator: tomo, 2024\n"
1919
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -1534,8 +1534,8 @@ msgid ""
15341534
">>> turtle.heading()\n"
15351535
"90.0\n"
15361536
"\n"
1537-
"Change angle measurement unit to grad (also known as gon,\n"
1538-
"grade, or gradian and equals 1/100-th of the right angle.)\n"
1537+
">>> # Change angle measurement unit to grad (also known as gon,\n"
1538+
">>> # grade, or gradian and equals 1/100-th of the right angle.)\n"
15391539
">>> turtle.degrees(400.0)\n"
15401540
">>> turtle.heading()\n"
15411541
"100.0\n"

‎whatsnew/changelog.po

+12,848-12,809
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.