Skip to content

Commit e0b09f8

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 5ff3258 commit e0b09f8

File tree

4 files changed

+6438
-6418
lines changed

4 files changed

+6438
-6418
lines changed

library/imaplib.po

+4-8
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.9\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2020-05-31 09:25+0000\n"
18+
"POT-Creation-Date: 2020-09-13 04:04+0000\n"
1919
"PO-Revision-Date: 2017-02-16 23:14+0000\n"
2020
"Last-Translator: tomo, 2017\n"
2121
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -187,9 +187,9 @@ msgstr ""
187187

188188
#: ../../library/imaplib.rst:146
189189
msgid ""
190-
"Converts an integer into a string representation using characters from the "
190+
"Converts an integer into a bytes representation using characters from the "
191191
"set [``A`` .. ``P``]."
192-
msgstr "整数を [``A`` .. ``P``] からなる文字集合を用いて表現した文字列に変換します。"
192+
msgstr ""
193193

194194
#: ../../library/imaplib.rst:152
195195
msgid "Converts an IMAP4 ``FLAGS`` response to a tuple of individual flags."
@@ -265,13 +265,9 @@ msgid ""
265265
"Each command returns a tuple: ``(type, [data, ...])`` where *type* is "
266266
"usually ``'OK'`` or ``'NO'``, and *data* is either the text from the command"
267267
" response, or mandated results from the command. Each *data* is either a "
268-
"string, or a tuple. If a tuple, then the first part is the header of the "
268+
"``bytes``, or a tuple. If a tuple, then the first part is the header of the "
269269
"response, and the second part contains the data (ie: 'literal' value)."
270270
msgstr ""
271-
"各命令はタプル: ``(type, [data, ...])`` を返し、*type* は通常 ``'OK'`` または ``'NO'`` "
272-
"です。*data* は命令に対する応答をテキストにしたものか、命令に対する実行結果です。各 *data* "
273-
"は文字列かタプルとなります。タプルの場合、最初の要素はレスポンスのヘッダで、次の要素にはデータが格納されます (ie: 'literal' "
274-
"value)。"
275271

276272
#: ../../library/imaplib.rst:204
277273
msgid ""

library/typing.po

+17-7
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ msgstr ""
325325
msgid ""
326326
"This means that it is possible to perform any operation or method call on a "
327327
"value of type :data:`Any` and assign it to any variable::"
328-
msgstr ""
328+
msgstr "これは、 :data:`Any` 型の値では、任意の演算やメソッドの呼び出しが行えることを意味します::"
329329

330330
#: ../../library/typing.rst:345
331331
msgid ""
@@ -431,7 +431,7 @@ msgstr "モジュールの内容"
431431

432432
#: ../../library/typing.rst:441
433433
msgid "The module defines the following classes, functions and decorators."
434-
msgstr ""
434+
msgstr "このモジュールでは以下のクラス、関数、デコレータを定義します。"
435435

436436
#: ../../library/typing.rst:445
437437
msgid ""
@@ -448,25 +448,29 @@ msgid ""
448448
"checkers will flag the deprecated types when the checked program targets "
449449
"Python 3.9 or newer."
450450
msgstr ""
451+
"余計な型は Python 3.9 で非推奨になりましたが、非推奨の警告はどれもインタープリタから通告されません。\n"
452+
"型チェッカーがチェックするプログラムの対照が Python 3.9 もしくはそれ以降のときに、非推奨の型に目印を付けることが期待されています。"
451453

452454
#: ../../library/typing.rst:456
453455
msgid ""
454456
"The deprecated types will be removed from the :mod:`typing` module in the "
455457
"first Python version released 5 years after the release of Python 3.9.0. See"
456458
" details in :pep:`585`—*Type Hinting Generics In Standard Collections*."
457459
msgstr ""
460+
"非推奨の型は、Python 3.9.0 のリリースから5年後の初めての Python バージョンで :mod:`typing` モジュールから削除されます。\n"
461+
"詳しいことは :pep:`585`—*Type Hinting Generics In Standard Collections* を参照してください。"
458462

459463
#: ../../library/typing.rst:462
460464
msgid "Special typing primitives"
461-
msgstr ""
465+
msgstr "特殊型付けプリミティブ"
462466

463467
#: ../../library/typing.rst:465
464468
msgid "Special types"
465-
msgstr ""
469+
msgstr "特殊型"
466470

467471
#: ../../library/typing.rst:467
468472
msgid "These can be used as types in annotations and do not support ``[]``."
469-
msgstr ""
473+
msgstr "これらはアノテーションの内部の型として使えますが、``[]`` はサポートしていません。"
470474

471475
#: ../../library/typing.rst:471
472476
msgid "Special type indicating an unconstrained type."
@@ -486,13 +490,13 @@ msgstr "関数が返り値を持たないことを示す特別な型です。例
486490

487491
#: ../../library/typing.rst:490
488492
msgid "Special forms"
489-
msgstr ""
493+
msgstr "特殊形式"
490494

491495
#: ../../library/typing.rst:492
492496
msgid ""
493497
"These can be used as types in annotations using ``[]``, each having a unique"
494498
" syntax."
495-
msgstr ""
499+
msgstr "これらは ``[]`` を使ったアノテーションの内部の型として使え、それぞれ固有の文法があります。"
496500

497501
#: ../../library/typing.rst:496
498502
msgid ""
@@ -524,6 +528,8 @@ msgstr ""
524528
#: ../../library/typing.rst:508
525529
msgid ":class:`builtins.tuple <tuple>` now supports ``[]``. See :pep:`585`."
526530
msgstr ""
531+
":class:`builtins.tuple <tuple>` は ``[]`` をサポートするようになりました。\n"
532+
":pep:`585` を参照してください。"
527533

528534
#: ../../library/typing.rst:513
529535
msgid "Union type; ``Union[X, Y]`` means either X or Y."
@@ -626,6 +632,8 @@ msgstr ""
626632
#: ../../library/typing.rst:582
627633
msgid ":class:`collections.abc.Callable` now supports ``[]``. See :pep:`585`."
628634
msgstr ""
635+
":class:`collections.abc.Callable` は ``[]`` をサポートするようになりました。\n"
636+
":pep:`585` を参照してください。"
629637

630638
#: ../../library/typing.rst:587
631639
msgid ""
@@ -674,6 +682,8 @@ msgstr ""
674682
#: ../../library/typing.rst:627
675683
msgid ":class:`builtins.type <type>` now supports ``[]``. See :pep:`585`."
676684
msgstr ""
685+
":class:`builtins.type <type>` は ``[]`` をサポートするようになりました。\n"
686+
":pep:`585` を参照してください。"
677687

678688
#: ../../library/typing.rst:632
679689
msgid ""

sphinx.po

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# 秘湯 <xwhhsprings@gmail.com>, 2017
88
# Arihiro TAKASE, 2017
99
# Inada Naoki <songofacandy@gmail.com>, 2017
10-
# tomo, 2019
1110
# Tetsuo Koyama <tkoyama010@gmail.com>, 2020
11+
# tomo, 2020
1212
#
1313
#, fuzzy
1414
msgid ""
@@ -17,7 +17,7 @@ msgstr ""
1717
"Report-Msgid-Bugs-To: \n"
1818
"POT-Creation-Date: 2020-05-31 09:25+0000\n"
1919
"PO-Revision-Date: 2017-02-16 17:32+0000\n"
20-
"Last-Translator: Tetsuo Koyama <tkoyama010@gmail.com>, 2020\n"
20+
"Last-Translator: tomo, 2020\n"
2121
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2222
"MIME-Version: 1.0\n"
2323
"Content-Type: text/plain; charset=UTF-8\n"
@@ -48,7 +48,7 @@ msgstr "バージョン {deprecated} で非推奨、バージョン {removed}
4848

4949
#: ../../tools/templates/dummy.html:8
5050
msgid "Deprecated since version {deprecated}, removed in version {removed}"
51-
msgstr ""
51+
msgstr "バージョン {deprecated} で非推奨、バージョン {removed} で削除"
5252

5353
#: ../../tools/templates/indexcontent.html:8
5454
msgid "Welcome! This is the documentation for Python %(release)s."
@@ -228,11 +228,11 @@ msgstr "バージョンごとのドキュメント"
228228

229229
#: ../../tools/templates/indexsidebar.html:5
230230
msgid "Python 3.10 (in development)"
231-
msgstr ""
231+
msgstr "Python 3.10 (in development)"
232232

233233
#: ../../tools/templates/indexsidebar.html:6
234234
msgid "Python 3.9 (pre-release)"
235-
msgstr ""
235+
msgstr "Python 3.9 (pre-release)"
236236

237237
#: ../../tools/templates/indexsidebar.html:7
238238
msgid "Python 3.8 (stable)"

0 commit comments

Comments
 (0)