Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit4972f21

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent80d7509 commit4972f21

File tree

5 files changed

+70
-15
lines changed

5 files changed

+70
-15
lines changed

‎library/2to3.po

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# tomo, 2020
88
# Keigo Fushio <fushio.keigo@gmail.com>, 2020
99
# Tetsuo Koyama <tkoyama010@gmail.com>, 2020
10+
# Shin Saito, 2021
1011
#
1112
#,fuzzy
1213
msgid ""
@@ -15,7 +16,7 @@ msgstr ""
1516
"Report-Msgid-Bugs-To:\n"
1617
"POT-Creation-Date:2021-01-01 16:06+0000\n"
1718
"PO-Revision-Date:2020-05-30 11:55+0000\n"
18-
"Last-Translator:Tetsuo Koyama <tkoyama010@gmail.com>, 2020\n"
19+
"Last-Translator:Shin Saito, 2021\n"
1920
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2021
"MIME-Version:1.0\n"
2122
"Content-Type:text/plain; charset=UTF-8\n"
@@ -533,14 +534,17 @@ msgid ""
533534
"statements are added, e.g. ``import collections.abc``. The following "
534535
"mapping are made:"
535536
msgstr""
537+
":mod:`operator` "
538+
"モジュール内のさまざまな関数呼び出しを、他の、しかし機能的には同等の関数呼び出しに変換します。必要に応じて、``import "
539+
"collections.abc`` などの適切な ``import`` ステートメントが追加されます。以下のマッピングが行われます。"
536540

537541
#:../../library/2to3.rst:354
538542
msgid"``operator.isCallable(obj)``"
539543
msgstr"``operator.isCallable(obj)``"
540544

541545
#:../../library/2to3.rst:354
542546
msgid"``callable(obj)``"
543-
msgstr""
547+
msgstr"``callable(obj)``"
544548

545549
#:../../library/2to3.rst:355
546550
msgid"``operator.sequenceIncludes(obj)``"
@@ -556,15 +560,15 @@ msgstr "``operator.isSequenceType(obj)``"
556560

557561
#:../../library/2to3.rst:356
558562
msgid"``isinstance(obj, collections.abc.Sequence)``"
559-
msgstr""
563+
msgstr"``isinstance(obj, collections.abc.Sequence)``"
560564

561565
#:../../library/2to3.rst:357
562566
msgid"``operator.isMappingType(obj)``"
563567
msgstr"``operator.isMappingType(obj)``"
564568

565569
#:../../library/2to3.rst:357
566570
msgid"``isinstance(obj, collections.abc.Mapping)``"
567-
msgstr""
571+
msgstr"``isinstance(obj, collections.abc.Mapping)``"
568572

569573
#:../../library/2to3.rst:358
570574
msgid"``operator.isNumberType(obj)``"
@@ -623,7 +627,7 @@ msgstr ":func:`reduce` が :func:`functools.reduce` に移動されたことを
623627

624628
#:../../library/2to3.rst:388
625629
msgid"Converts :func:`reload` to :func:`importlib.reload`."
626-
msgstr""
630+
msgstr":func:`reload` を :func:`importlib.reload` に変換します。"
627631

628632
#:../../library/2to3.rst:392
629633
msgid"Changes :data:`sys.maxint` to :data:`sys.maxsize`."

‎library/hashlib.po

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.8\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2021-01-01 16:06+0000\n"
14+
"POT-Creation-Date:2021-05-09 17:20+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"
@@ -547,6 +547,10 @@ msgid ""
547547
"(`False` for sequential mode)."
548548
msgstr""
549549

550+
#: ../../library/hashlib.rstNone
551+
msgid"Explanation of tree mode parameters."
552+
msgstr""
553+
550554
#:../../library/hashlib.rst:379
551555
msgid""
552556
"See section 2.10 in `BLAKE2 specification "

‎library/urllib.parse.po

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# Translators:
77
# tomo, 2020
88
# mollinaca, 2021
9+
# Takanori Suzuki <takanori@takanory.net>, 2021
910
#
1011
#,fuzzy
1112
msgid ""
@@ -14,7 +15,7 @@ msgstr ""
1415
"Report-Msgid-Bugs-To:\n"
1516
"POT-Creation-Date:2021-05-06 00:08+0000\n"
1617
"PO-Revision-Date:2020-05-30 12:13+0000\n"
17-
"Last-Translator:mollinaca, 2021\n"
18+
"Last-Translator:Takanori Suzuki <takanori@takanory.net>, 2021\n"
1819
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
1920
"MIME-Version:1.0\n"
2021
"Content-Type:text/plain; charset=UTF-8\n"
@@ -397,7 +398,7 @@ msgstr "*encoding* および *errors* パラメータが追加されました。
397398

398399
#:../../library/urllib.parse.rst:204../../library/urllib.parse.rst:247
399400
msgid"Added *max_num_fields* parameter."
400-
msgstr""
401+
msgstr"*max_num_fields* 引数が追加されました。"
401402

402403
#:../../library/urllib.parse.rst:207../../library/urllib.parse.rst:250
403404
msgid""
@@ -443,6 +444,10 @@ msgid ""
443444
"is needed to separate the path segments and parameters. This function "
444445
"returns a 5-item :term:`named tuple`::"
445446
msgstr""
447+
":func:`urlparse` に似ていますが、URL から params を切り離しません。このメソッドは通常、URL の *path* "
448+
"部分において、各セグメントにパラメータ指定をできるようにした最近の URL 構文 (:rfc:`2396` 参照) が必要な場合に、 "
449+
":func:`urlparse` の代わりに使われます。パスセグメントとパラメータを分割するためには分割用の関数が必要です。この関数は 5 要素の "
450+
"term:`named tuple` を返します::"
446451

447452
#:../../library/urllib.parse.rst:277../../library/urllib.parse.rst:381
448453
msgid""

‎library/urllib.request.po

Lines changed: 45 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# Translators:
77
# tomo, 2020
88
# mollinaca, 2021
9+
# Takanori Suzuki <takanori@takanory.net>, 2021
910
#
1011
#,fuzzy
1112
msgid ""
@@ -14,7 +15,7 @@ msgstr ""
1415
"Report-Msgid-Bugs-To:\n"
1516
"POT-Creation-Date:2021-01-01 16:06+0000\n"
1617
"PO-Revision-Date:2020-05-30 12:13+0000\n"
17-
"Last-Translator:mollinaca, 2021\n"
18+
"Last-Translator:Takanori Suzuki <takanori@takanory.net>, 2021\n"
1819
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
1920
"MIME-Version:1.0\n"
2021
"Content-Type:text/plain; charset=UTF-8\n"
@@ -208,6 +209,8 @@ msgid ""
208209
"Raises an :ref:`auditing event <auditing>` ``urllib.Request`` with arguments"
209210
" ``fullurl``, ``data``, ``headers``, ``method``."
210211
msgstr""
212+
"引数 ``fullurl``, ``data``, ``headers``, ``method`` を指定して :ref:`監査イベント "
213+
"<auditing>` ``urllib.Request``` を送出します。 "
211214

212215
#:../../library/urllib.request.rst:100
213216
msgid""
@@ -245,6 +248,8 @@ msgid ""
245248
":func:`ssl.create_default_context` select the system's trusted CA "
246249
"certificates for you."
247250
msgstr""
251+
"*cafile*, *capath* および *cadefault* は非推奨となったので、 *context* を使ってください。\n"
252+
"代わりに :meth:`ssl.SSLContext.load_cert_chain` を使うか、または :func:`ssl.create_default_context` にシステムが信頼する CA 証明書を選んでもらうかしてください。"
248253

249254
#:../../library/urllib.request.rst:130
250255
msgid""
@@ -761,7 +766,7 @@ msgstr ""
761766
msgid""
762767
"boolean, indicates whether the request is unverifiable as defined by "
763768
":rfc:`2965`."
764-
msgstr""
769+
msgstr"リクエストが :rfc:`2965` で定義された証明不能 (unverifiable) であるかどうかを示す論理値です。"
765770

766771
#:../../library/urllib.request.rst:518
767772
msgid""
@@ -890,46 +895,55 @@ msgid ""
890895
":meth:`<protocol>_open` --- signal that the handler knows how to open "
891896
"*protocol* URLs."
892897
msgstr""
898+
":meth:`<protocol>_open` --- ハンドラーが *protocol* の URL を開く方法を知っているかどうかを調べます。"
893899

894900
#:../../library/urllib.request.rst:627
895901
msgid"See |protocol_open|_ for more information."
896-
msgstr""
902+
msgstr"詳細は、 |protocol_open|_ を参照してください。"
897903

898904
#:../../library/urllib.request.rst:629
899905
msgid""
900906
":meth:`http_error_\\<type\\>` --- signal that the handler knows how to "
901907
"handle HTTP errors with HTTP error code *type*."
902908
msgstr""
909+
":meth:`http_error_\\<type\\>` --- ハンドラーが HTTP エラーコード *type* "
910+
"の処理方法を知っていることを示すシグナルです。"
903911

904912
#:../../library/urllib.request.rst:632
905913
msgid"See |http_error_nnn|_ for more information."
906-
msgstr""
914+
msgstr"詳細は、 |http_error_nnn|_ を参照してください。"
907915

908916
#:../../library/urllib.request.rst:634
909917
msgid""
910918
":meth:`<protocol>_error` --- signal that the handler knows how to handle "
911919
"errors from (non-\\ ``http``) *protocol*."
912920
msgstr""
921+
":meth:`<protocol>_error` --- ハンドラーが (``http`` でない) *protocol* "
922+
"のエラーを処理する方法を知っていることを示すシグナルです。"
913923

914924
#:../../library/urllib.request.rst:637
915925
msgid""
916926
":meth:`<protocol>_request` --- signal that the handler knows how to pre-"
917927
"process *protocol* requests."
918928
msgstr""
929+
":meth:`<protocol>_request` --- ハンドラーが *protocol* "
930+
"リクエストのプリプロセス方法を知っていることを示すシグナルです。"
919931

920932
#:../../library/urllib.request.rst:640
921933
msgid"See |protocol_request|_ for more information."
922-
msgstr""
934+
msgstr"詳細は、 |protocol_request|_ を参照してください。"
923935

924936
#:../../library/urllib.request.rst:642
925937
msgid""
926938
":meth:`<protocol>_response` --- signal that the handler knows how to post-"
927939
"process *protocol* responses."
928940
msgstr""
941+
":meth:`<protocol>_response` --- ハンドラーが *protocol* "
942+
"リクエストのポストプロセス方法を知っていることを示すシグナルです。"
929943

930944
#:../../library/urllib.request.rst:645
931945
msgid"See |protocol_response|_ for more information."
932-
msgstr""
946+
msgstr"詳細は、 |protocol_response|_ を参照してください。"
933947

934948
#:../../library/urllib.request.rst:654
935949
msgid""
@@ -957,6 +971,9 @@ msgid ""
957971
"response code to determine the specific error handler; refer to the "
958972
":meth:`http_error_\\<type\\>` methods of the handler classes."
959973
msgstr""
974+
"与えられたプロトコルにおけるエラーを処理します。このメソッドは与えられたプロトコルにおける登録済みのエラーハンドラを (プロトコル固有の) "
975+
"引数で呼び出します。 HTTP プロトコルは特殊なケースで、特定のエラーハンドラを選び出すのに HTTP レスポンスコードを使います; ハンドラクラスの"
976+
" :meth:`http_error_\\<type\\>` メソッドを参照してください。"
960977

961978
#:../../library/urllib.request.rst:672
962979
msgid""
@@ -980,6 +997,8 @@ msgid ""
980997
"Every handler with a method named like :meth:`<protocol>_request` has that "
981998
"method called to pre-process the request."
982999
msgstr""
1000+
":meth:`<protocol>_request` "
1001+
"形式のメソッドを持つすべてのハンドラーに対してそのメソッドを呼び出し、リクエストのプリプロセスを行います。"
9831002

9841003
#:../../library/urllib.request.rst:682
9851004
msgid""
@@ -988,6 +1007,9 @@ msgid ""
9881007
":const:`None` value (ie. a response), or raises an exception (usually "
9891008
":exc:`~urllib.error.URLError`). Exceptions are allowed to propagate."
9901009
msgstr""
1010+
":meth:`<protocol>_open` のようなメソッドでハンドラーが呼び出され、リクエストを処理します。このステージではハンドラーが非-\\ "
1011+
":const:`None` 値 (例: レスポンス) か例外 (通常は :exc:`~urllib.error.URLError`) "
1012+
"を返した時点で終了します。例外は伝搬できます。"
9911013

9921014
#:../../library/urllib.request.rst:687
9931015
msgid""
@@ -997,6 +1019,10 @@ msgid ""
9971019
"all such methods return :const:`None`, the algorithm is repeated for methods"
9981020
" named :meth:`unknown_open`."
9991021
msgstr""
1022+
"実際には、上のアルゴリズムではまず :meth:`default_open` という名前のメソッドを呼び出します。このメソッドがすべて "
1023+
":const:`None` を返す場合、同じアルゴリズムを繰り返して、今度は :meth:`<protocol>_open` "
1024+
"形式のメソッドを試します。メソッドがすべて :const:`None` を返すと、さらに同じアルゴリズムを繰り返して "
1025+
":meth:`unknown_open` を呼び出します。"
10001026

10011027
#:../../library/urllib.request.rst:693
10021028
msgid""
@@ -1013,6 +1039,8 @@ msgid ""
10131039
"Every handler with a method named like :meth:`<protocol>_response` has that "
10141040
"method called to post-process the response."
10151041
msgstr""
1042+
":meth:`<protocol>_response` "
1043+
"形式のメソッドを持つすべてのハンドラーに対してそのメソッドを呼び出し、リクエストのポストプロセスを行います。"
10161044

10171045
#:../../library/urllib.request.rst:704
10181046
msgid"BaseHandler Objects"
@@ -1047,6 +1075,9 @@ msgid ""
10471075
":meth:`<protocol>_request` or :meth:`<protocol>_response` methods are named "
10481076
":class:`\\*Processor`; all others are named :class:`\\*Handler`."
10491077
msgstr""
1078+
"慣習的に、 :meth:`<protocol>_request` や :meth:`<protocol>_response` "
1079+
"といったメソッドを定義している サブクラスは :class:`\\ *Processor` と名づけ、その他は :class:`\\* Handler`"
1080+
" と名づけることになっています"
10501081

10511082
#:../../library/urllib.request.rst:732
10521083
msgid""
@@ -1303,6 +1334,10 @@ msgid ""
13031334
"calling ``request.set_proxy()``, and call the next handler in the chain to "
13041335
"actually execute the protocol."
13051336
msgstr""
1337+
":class:`ProxyHandler` は、コンストラクターで与えた辞書 *proxies* にプロキシが設定されているような *protocol*"
1338+
" すべてについて、メソッド :meth:`<protocol>_open` を持つことになります。このメソッドは "
1339+
"``request.set_proxy()`` "
1340+
"を呼び出して、リクエストがプロキシを通過できるように修正します。その後連鎖するハンドラーの中から次のハンドラーを呼び出して実際にプロトコルを実行します。"
13061341

13071342
#:../../library/urllib.request.rst:916
13081343
msgid"HTTPPasswordMgr Objects"
@@ -1553,6 +1588,10 @@ msgid ""
15531588
"will raise an :exc:`~urllib.error.HTTPError` if no other handler handles the"
15541589
" error."
15551590
msgstr""
1591+
"200 以外のエラーコードの場合、これは単に :meth:`http_error_\\<type\\>` ハンドラーメソッドに "
1592+
":meth:`OpenerDirector.error` "
1593+
"経由で処理を渡します。他にそのエラーを処理するハンドラーがない場合、:class:`HTTPDefaultErrorHandler` は最後に "
1594+
":exc:`~urllib.error.HTTPError` を送出します。"
15561595

15571596
#:../../library/urllib.request.rst:1169
15581597
msgid"Process HTTPS error responses."

‎reference/expressions.po

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# Translators:
77
# tomo, 2020
88
# Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2021
9+
# Shin Saito, 2021
910
#
1011
#,fuzzy
1112
msgid ""
@@ -14,7 +15,7 @@ msgstr ""
1415
"Report-Msgid-Bugs-To:\n"
1516
"POT-Creation-Date:2021-02-21 16:31+0000\n"
1617
"PO-Revision-Date:2020-05-30 12:15+0000\n"
17-
"Last-Translator:Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2021\n"
18+
"Last-Translator:Shin Saito, 2021\n"
1819
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
1920
"MIME-Version:1.0\n"
2021
"Content-Type:text/plain; charset=UTF-8\n"
@@ -428,6 +429,8 @@ msgid ""
428429
" key. Starting with 3.8, the key is evaluated before the value, as proposed"
429430
" by :pep:`572`."
430431
msgstr""
432+
"Python 3.8 より前のバージョンでは、辞書内包表記において、キーと値の評価順序は明示されていませんでした。CPython "
433+
"では、値がキーより先に評価されていました。バージョン 3.8 からは :pep:`572` で提案されているように、キーが値より先に評価されます。"
431434

432435
#:../../reference/expressions.rst:353
433436
msgid"Generator expressions"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp