Skip to content

Commit 7007159

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 66fc168 commit 7007159

File tree

12 files changed

+6880
-6780
lines changed

12 files changed

+6880
-6780
lines changed

library/array.po

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# Inada Naoki <songofacandy@gmail.com>, 2017
1313
# tomo, 2019
1414
# mollinaca, 2020
15+
# Takanori Suzuki <takanori@takanory.net>, 2021
1516
#
1617
#, fuzzy
1718
msgid ""
@@ -20,7 +21,7 @@ msgstr ""
2021
"Report-Msgid-Bugs-To: \n"
2122
"POT-Creation-Date: 2021-04-27 06:12+0000\n"
2223
"PO-Revision-Date: 2017-02-16 17:48+0000\n"
23-
"Last-Translator: mollinaca, 2020\n"
24+
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2021\n"
2425
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2526
"MIME-Version: 1.0\n"
2627
"Content-Type: text/plain; charset=UTF-8\n"
@@ -100,7 +101,7 @@ msgstr "``'u'``"
100101

101102
#: ../../library/array.rst:25
102103
msgid "wchar_t"
103-
msgstr ""
104+
msgstr "wchar_t"
104105

105106
#: ../../library/array.rst:25
106107
msgid "Unicode character"
@@ -372,6 +373,9 @@ msgid ""
372373
":exc:`EOFError` is raised, but the items that were available are still "
373374
"inserted into the array."
374375
msgstr ""
376+
":term:`ファイルオブジェクト <file object>` *f* から (マシンのデータ形式そのままで) *n* "
377+
"個の要素を読み出し、アレイの末尾に要素を追加します。 *n* 個未満の要素しか読めなかった場合は :exc:`EOFError` "
378+
"を送出しますが、それまでに読み出せた値はアレイに追加されます。"
375379

376380
#: ../../library/array.rst:168
377381
msgid ""

library/calendar.po

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
# Nozomu Kaneko <nozom.kaneko@gmail.com>, 2017
1111
# Arihiro TAKASE, 2017
1212
# mollinaca, 2020
13+
# Takanori Suzuki <takanori@takanory.net>, 2021
1314
#
1415
#, fuzzy
1516
msgid ""
@@ -18,7 +19,7 @@ msgstr ""
1819
"Report-Msgid-Bugs-To: \n"
1920
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
2021
"PO-Revision-Date: 2017-02-16 19:36+0000\n"
21-
"Last-Translator: mollinaca, 2020\n"
22+
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2021\n"
2223
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2324
"MIME-Version: 1.0\n"
2425
"Content-Type: text/plain; charset=UTF-8\n"
@@ -229,7 +230,7 @@ msgstr "このクラスは HTML のカレンダーを生成するのに使えま
229230

230231
#: ../../library/calendar.rst:175
231232
msgid ":class:`!HTMLCalendar` instances have the following methods:"
232-
msgstr ""
233+
msgstr ":class:`!HTMLCalendar` インスタンスには以下のメソッドがあります:"
233234

234235
#: ../../library/calendar.rst:179
235236
msgid ""

library/collections.abc.po

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# Nakamura Masahito <randomstep@gmail.com>, 2018
1313
# tomo, 2018
1414
# mollinaca, 2020
15+
# Takanori Suzuki <takanori@takanory.net>, 2021
1516
#
1617
#, fuzzy
1718
msgid ""
@@ -20,7 +21,7 @@ msgstr ""
2021
"Report-Msgid-Bugs-To: \n"
2122
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
2223
"PO-Revision-Date: 2017-02-16 23:03+0000\n"
23-
"Last-Translator: mollinaca, 2020\n"
24+
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2021\n"
2425
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2526
"MIME-Version: 1.0\n"
2627
"Content-Type: text/plain; charset=UTF-8\n"
@@ -340,19 +341,19 @@ msgstr "``aclose``, ``__aiter__``, ``__anext__``"
340341

341342
#: ../../library/collections.abc.rst:102
342343
msgid "ABC for classes that provide the :meth:`__contains__` method."
343-
msgstr ""
344+
msgstr ":meth:`__contains__` メソッドを提供するクラスの ABC です。"
344345

345346
#: ../../library/collections.abc.rst:106
346347
msgid "ABC for classes that provide the :meth:`__hash__` method."
347-
msgstr ""
348+
msgstr ":meth:`__hash__` メソッドを提供するクラスの ABC です。"
348349

349350
#: ../../library/collections.abc.rst:110
350351
msgid "ABC for classes that provide the :meth:`__len__` method."
351-
msgstr ""
352+
msgstr ":meth:`__len__` メソッドを提供するクラスの ABC です。"
352353

353354
#: ../../library/collections.abc.rst:114
354355
msgid "ABC for classes that provide the :meth:`__call__` method."
355-
msgstr ""
356+
msgstr ":meth:`__call__` メソッドを提供するクラスの ABC です。"
356357

357358
#: ../../library/collections.abc.rst:118
358359
msgid "ABC for classes that provide the :meth:`__iter__` method."
@@ -451,6 +452,8 @@ msgid ""
451452
":term:`Coroutine <coroutine>` objects and instances of the "
452453
":class:`~collections.abc.Coroutine` ABC are all instances of this ABC."
453454
msgstr ""
455+
":class:`~collections.abc.Coroutine` ABC の :term:`Coroutine <coroutine>` "
456+
"オブジェクトとインスタンスは、すべてこの ABC のインスタンスです。"
454457

455458
#: ../../library/collections.abc.rst:200
456459
msgid ""

library/collections.po

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# 秘湯 <xwhhsprings@gmail.com>, 2017
1414
# tomo, 2019
1515
# mollinaca, 2020
16+
# Takanori Suzuki <takanori@takanory.net>, 2021
1617
#
1718
#, fuzzy
1819
msgid ""
@@ -21,7 +22,7 @@ msgstr ""
2122
"Report-Msgid-Bugs-To: \n"
2223
"POT-Creation-Date: 2021-03-14 05:42+0000\n"
2324
"PO-Revision-Date: 2017-02-16 23:03+0000\n"
24-
"Last-Translator: mollinaca, 2020\n"
25+
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2021\n"
2526
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2627
"MIME-Version: 1.0\n"
2728
"Content-Type: text/plain; charset=UTF-8\n"
@@ -244,7 +245,7 @@ msgstr "これは、末尾のマッピングオブジェクトから始めた一
244245

245246
#: ../../library/collections.rst:119
246247
msgid "Added support for ``|`` and ``|=`` operators, specified in :pep:`584`."
247-
msgstr ""
248+
msgstr ":pep:`584` で規定されている ``|`` 演算子と ``|=`` 演算子のサポートを追加しました。"
248249

249250
#: ../../library/collections.rst:124
250251
msgid ""
@@ -268,6 +269,9 @@ msgid ""
268269
":meth:`~collections.ChainMap.new_child` method and the "
269270
":attr:`~collections.ChainMap.parents` property."
270271
msgstr ""
272+
"Django のテンプレート用の `Context class `_ は、読み出し専用のマッピングのチェーンです。 "
273+
":meth:`~collections.ChainMap.new_child` メソッドや "
274+
":attr:`~collections.ChainMap.parents` プロパティに似た push や pop の機能もあります。"
271275

272276
#: ../../library/collections.rst:137
273277
msgid ""
@@ -871,7 +875,7 @@ msgstr ""
871875
#: ../../library/collections.rst:735 ../../library/collections.rst:1132
872876
msgid ""
873877
"Added merge (``|``) and update (``|=``) operators, specified in :pep:`584`."
874-
msgstr ""
878+
msgstr ":pep:`584` で規定されている合成演算子 (``|``) と更新演算子 (``|=``)が追加されました。"
875879

876880
#: ../../library/collections.rst:741
877881
msgid ":class:`defaultdict` Examples"
@@ -1049,7 +1053,7 @@ msgstr "*module* 引数が追加されました。"
10491053

10501054
#: ../../library/collections.rst:865
10511055
msgid "Removed the *verbose* parameter and the :attr:`_source` attribute."
1052-
msgstr ""
1056+
msgstr "*verbose* 引数と :attr:`_source` 属性が削除されました。"
10531057

10541058
#: ../../library/collections.rst:868
10551059
msgid ""
@@ -1094,6 +1098,9 @@ msgid ""
10941098
"features of :class:`OrderedDict` are required, the suggested remediation is "
10951099
"to cast the result to the desired type: ``OrderedDict(nt._asdict())``."
10961100
msgstr ""
1101+
":class:`collections.OrderedDict` ではなく :class:`dict` を返すようになりました。Python "
1102+
"3.7以降は、通常の辞書で順番が保証されています。 :class:`OrderedDict` 特有の機能を使いたい場合は、結果を "
1103+
"``OrderedDict(nt._asdict())`` 型にキャストして使用することを推奨します。"
10971104

10981105
#: ../../library/collections.rst:941
10991106
msgid ""

library/datetime.po

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3577,25 +3577,29 @@ msgid ""
35773577
" returns ``None``; otherwise ``%Z`` is replaced by the returned value, which"
35783578
" must be a string."
35793579
msgstr ""
3580+
" :meth:`strftime` では、 :meth:`tzname` が ``None`` を返した場合、 ``%Z`` "
3581+
"は空文字列に置き換わります。そうでない場合、 ``%Z`` は返された値に置き換わりますが、 これは文字列でなければなりません。"
35803582

35813583
#: ../../library/datetime.rst:2543
35823584
msgid ":meth:`strptime` only accepts certain values for ``%Z``:"
3583-
msgstr ""
3585+
msgstr ":meth:`strptime` は ``%Z``に特定の値のみを受け入れます:"
35843586

35853587
#: ../../library/datetime.rst:2545
35863588
msgid "any value in ``time.tzname`` for your machine's locale"
3587-
msgstr ""
3589+
msgstr "使用しているマシンのロケールによる ``time.tzname``の任意の値"
35883590

35893591
#: ../../library/datetime.rst:2546
35903592
msgid "the hard-coded values ``UTC`` and ``GMT``"
3591-
msgstr ""
3593+
msgstr "ハードコードされた値 ``UTC``または``GMT``"
35923594

35933595
#: ../../library/datetime.rst:2548
35943596
msgid ""
35953597
"So someone living in Japan may have ``JST``, ``UTC``, and ``GMT`` as valid "
35963598
"values, but probably not ``EST``. It will raise ``ValueError`` for invalid "
35973599
"values."
35983600
msgstr ""
3601+
"つまり、日本に住んでいる場合は ``JST``, ``UTC``と``GMT``が有効な値であり、 "
3602+
"``EST``はおそらく無効な値となります。無効な値の場合は ``ValueError``を送出します。"
35993603

36003604
#: ../../library/datetime.rst:2552
36013605
msgid ""

library/enum.po

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# Inada Naoki <songofacandy@gmail.com>, 2017
1414
# Nozomu Kaneko <nozom.kaneko@gmail.com>, 2017
1515
# Naoki Nakamura <agent@sohzoh.com>, 2020
16+
# Takanori Suzuki <takanori@takanory.net>, 2021
1617
#
1718
#, fuzzy
1819
msgid ""
@@ -21,7 +22,7 @@ msgstr ""
2122
"Report-Msgid-Bugs-To: \n"
2223
"POT-Creation-Date: 2021-03-02 05:36+0000\n"
2324
"PO-Revision-Date: 2017-02-16 23:09+0000\n"
24-
"Last-Translator: Naoki Nakamura <agent@sohzoh.com>, 2020\n"
25+
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2021\n"
2526
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2627
"MIME-Version: 1.0\n"
2728
"Content-Type: text/plain; charset=UTF-8\n"
@@ -105,7 +106,7 @@ msgstr "一つの名前だけがひとつの値に束縛されていることを
105106
msgid ""
106107
"Instances are replaced with an appropriate value for Enum members. By "
107108
"default, the initial value starts at 1."
108-
msgstr ""
109+
msgstr "インスタンスはそれぞれ、適切な値で置き換えられます。デフォルトでは、値は1からはじまります。"
109110

110111
#: ../../library/enum.rst:67
111112
msgid "``Flag``, ``IntFlag``, ``auto``"
@@ -289,6 +290,8 @@ msgid ""
289290
"the next :class:`int` in sequence with the last :class:`int` provided, but "
290291
"the way it does this is an implementation detail and may change."
291292
msgstr ""
293+
"デフォルトの :meth:`_generate_next_value_` メソッドの目的は、最後に提供した :class:`int` の次から順々に "
294+
":class:`int` を提供することですが、この動作は実装詳細であり変更される可能性があります。"
292295

293296
#: ../../library/enum.rst:285
294297
msgid ""
@@ -380,6 +383,10 @@ msgid ""
380383
":meth:`__add__`, etc.), descriptors (methods are also descriptors), and "
381384
"variable names listed in :attr:`_ignore_`."
382385
msgstr ""
386+
"何が許されているかのルールは次のとおりです。先頭と末尾が 1 "
387+
"個のアンダースコアの名前は列挙型により予約されているため、使用できません。列挙型内で定義されたその他すべての名前は、その列挙型のメンバーとして使用できます。特殊メソッド"
388+
" (:meth:`__str__`, :meth:`__add__` など) と、メソッドを含むデスクリプタ(記述子)、 "
389+
":attr:`_ignore_` に記載されている変数名は例外です。"
383390

384391
#: ../../library/enum.rst:396
385392
msgid ""
@@ -403,7 +410,7 @@ msgstr ""
403410
msgid ""
404411
"Also, subclassing an enumeration is allowed only if the enumeration does not"
405412
" define any members. So this is forbidden::"
406-
msgstr ""
413+
msgstr "列挙型のサブクラスの作成はその列挙型にメンバーが一つも定義されていない場合のみ行なえます。従って以下は許されません::"
407414

408415
#: ../../library/enum.rst:421
409416
msgid "But this is allowed::"
@@ -573,7 +580,7 @@ msgstr "新しい Enum クラスが属するモジュールの名前です。"
573580

574581
#: ../../library/enum.rst:0
575582
msgid "qualname"
576-
msgstr ""
583+
msgstr "qualname"
577584

578585
#: ../../library/enum.rst:545
579586
msgid "where in module new Enum class can be found."
@@ -589,7 +596,7 @@ msgstr "新しい Enum クラスに複合されるデータ型です。"
589596

590597
#: ../../library/enum.rst:0
591598
msgid "start"
592-
msgstr ""
599+
msgstr "start"
593600

594601
#: ../../library/enum.rst:549
595602
msgid "number to start counting at if only names are passed in."
@@ -995,6 +1002,13 @@ msgid ""
9951002
"the final :class:`Enum` class are correct (such as :meth:`__new__`, "
9961003
":meth:`__getnewargs__`, :meth:`__str__` and :meth:`__repr__`)."
9971004
msgstr ""
1005+
":class:`EnumMeta` "
1006+
"メタクラスは、:meth:`__contains__`、:meth:`__dir__`、:meth:`__iter__` "
1007+
"および標準的なクラスでは失敗するが :class:`Enum` クラスでは動作するその他のメソッド (`list(Color)` や "
1008+
"`some_enum_var in Color` など) を責任を持って提供します。:class:`EnumMeta` は最終的な "
1009+
":class:`Enum` クラスのさまざまなメソッド "
1010+
"(:meth:`__new__`、:meth:`__getnewargs__`、:meth:`__str__` および "
1011+
":meth:`__repr__`) が正しいことを責任を持って保証します。"
9981012

9991013
#: ../../library/enum.rst:1062
10001014
msgid "Enum Members (aka instances)"
@@ -1081,7 +1095,7 @@ msgstr "``_missing_``, ``_order_``, ``_generate_next_value_``"
10811095

10821096
#: ../../library/enum.rst:1103
10831097
msgid "``_ignore_``"
1084-
msgstr ""
1098+
msgstr "``_ignore_``"
10851099

10861100
#: ../../library/enum.rst:1105
10871101
msgid ""

library/heapq.po

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# 秘湯 <xwhhsprings@gmail.com>, 2017
99
# Shun Sakurai, 2017
1010
# Arihiro TAKASE, 2017
11+
# Takanori Suzuki <takanori@takanory.net>, 2021
1112
#
1213
#, fuzzy
1314
msgid ""
@@ -16,7 +17,7 @@ msgstr ""
1617
"Report-Msgid-Bugs-To: \n"
1718
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
1819
"PO-Revision-Date: 2017-02-16 23:13+0000\n"
19-
"Last-Translator: Arihiro TAKASE, 2017\n"
20+
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2021\n"
2021
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2122
"MIME-Version: 1.0\n"
2223
"Content-Type: text/plain; charset=UTF-8\n"
@@ -201,6 +202,10 @@ msgid ""
201202
"example, ``key=str.lower``). Equivalent to: ``sorted(iterable, key=key, "
202203
"reverse=True)[:n]``."
203204
msgstr ""
205+
"*iterable* で定義されるデータセットのうち、最大値から降順に *n* 個の値のリストを返します。(あたえられた場合) *key* "
206+
"は、引数を一つとる、*iterable* のそれぞれの要素から比較キーを生成する関数を指定します(例 "
207+
"``key=str.lower``)。以下のコードと同等です: ``sorted(iterable, key=key, "
208+
"reverse=True)[:n]``"
204209

205210
#: ../../library/heapq.rst:122
206211
msgid ""
@@ -210,6 +215,9 @@ msgid ""
210215
"example, ``key=str.lower``). Equivalent to: ``sorted(iterable, "
211216
"key=key)[:n]``."
212217
msgstr ""
218+
"*iterable* で定義されるデータセットのうち、最小値から昇順に *n* 個の値のリストを返します。(あたえられた場合) *key* "
219+
"は、引数を一つとる、*iterable* のそれぞれの要素から比較キーを生成する関数を指定します(例 "
220+
"``key=str.lower``)。以下のコードと同等です: ``sorted(iterable, key=key)[:n]``"
213221

214222
#: ../../library/heapq.rst:128
215223
msgid ""

library/numbers.po

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# E. Kawashima, 2017
99
# Shun Sakurai, 2017
1010
# Arihiro TAKASE, 2017
11+
# Takanori Suzuki <takanori@takanory.net>, 2021
1112
#
1213
#, fuzzy
1314
msgid ""
@@ -16,7 +17,7 @@ msgstr ""
1617
"Report-Msgid-Bugs-To: \n"
1718
"POT-Creation-Date: 2021-05-16 06:22+0000\n"
1819
"PO-Revision-Date: 2017-02-16 23:20+0000\n"
19-
"Last-Translator: Arihiro TAKASE, 2017\n"
20+
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2021\n"
2021
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2122
"MIME-Version: 1.0\n"
2223
"Content-Type: text/plain; charset=UTF-8\n"
@@ -60,6 +61,10 @@ msgid ""
6061
"``-``, ``*``, ``/``, ``**``, :func:`abs`, :meth:`conjugate`, ``==``, and "
6162
"``!=``. All except ``-`` and ``!=`` are abstract."
6263
msgstr ""
64+
"この型のサブクラスは複素数を表し、組み込みの :class:`complex` 型を受け付ける演算を含みます。それらは: "
65+
":class:`complex` および :class:`bool` への変換、 :attr:`.real`, :attr:`.imag`, "
66+
"``+``, ``-``, ``*``, ``/``, ``**``, :func:`abs`, :meth:`conjugate`, ``==``, "
67+
"``!=`` です。 ``-`` と ``!=`` 以外の全てのものは抽象メソッドや抽象プロパティです。"
6368

6469
#: ../../library/numbers.rst:35
6570
msgid "Abstract. Retrieves the real component of this number."

0 commit comments

Comments
 (0)