Skip to content

Commit 543b4c3

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 5b9c94c commit 543b4c3

File tree

4 files changed

+3878
-3846
lines changed

4 files changed

+3878
-3846
lines changed

library/asyncio-task.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.7\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2018-10-02 09:20+0900\n"
19+
"POT-Creation-Date: 2018-12-27 10:11+0900\n"
2020
"PO-Revision-Date: 2017-02-16 17:49+0000\n"
2121
"Last-Translator: tomo, 2018\n"
2222
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -578,8 +578,8 @@ msgstr "このドキュメントの :ref:`asyncio-multithreading` 節を参照
578578

579579
#: ../../library/asyncio-task.rst:607
580580
msgid ""
581-
"Unlike other asyncio functions this functions requires the *loop* argument "
582-
"to be passed explicitly."
581+
"Unlike other asyncio functions this function requires the *loop* argument to"
582+
" be passed explicitly."
583583
msgstr ""
584584

585585
#: ../../library/asyncio-task.rst:614

library/binascii.po

Lines changed: 25 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.7\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2018-06-30 05:56+0900\n"
18+
"POT-Creation-Date: 2018-12-27 10:11+0900\n"
1919
"PO-Revision-Date: 2017-02-16 18:42+0000\n"
2020
"Last-Translator: E. Kawashima, 2017\n"
2121
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -209,7 +209,13 @@ msgstr ""
209209
"バイナリ *data* の16進表現を返します。*data* "
210210
"の各バイトは、対応する2桁の16進表現に変換されます。したがって、返されるバイトオブジェクトは *data* の2倍の長さになります。"
211211

212-
#: ../../library/binascii.rst:159
212+
#: ../../library/binascii.rst:155
213+
msgid ""
214+
"Similar functionality (but returning a text string) is also conveniently "
215+
"accessible using the :meth:`bytes.hex` method."
216+
msgstr ""
217+
218+
#: ../../library/binascii.rst:161
213219
msgid ""
214220
"Return the binary data represented by the hexadecimal string *hexstr*. This"
215221
" function is the inverse of :func:`b2a_hex`. *hexstr* must contain an even "
@@ -219,46 +225,53 @@ msgstr ""
219225
"16進数表記の文字列 *hexstr* の表すバイナリデータを返します。この関数は :func:`b2a_hex` の逆です。 *hexstr* は "
220226
"16進数字 (大文字でも小文字でも構いません) を偶数個含んでいなければなりません。そうでない場合、例外 :exc:`Error` が送出されます。"
221227

222-
#: ../../library/binascii.rst:167
228+
#: ../../library/binascii.rst:166
229+
msgid ""
230+
"Similar functionality (accepting only text string arguments, but more "
231+
"liberal towards whitespace) is also accessible using the "
232+
":meth:`bytes.fromhex` class method."
233+
msgstr ""
234+
235+
#: ../../library/binascii.rst:172
223236
msgid "Exception raised on errors. These are usually programming errors."
224237
msgstr "エラーが発生した際に送出される例外です。通常はプログラムのエラーです。"
225238

226-
#: ../../library/binascii.rst:172
239+
#: ../../library/binascii.rst:177
227240
msgid ""
228241
"Exception raised on incomplete data. These are usually not programming "
229242
"errors, but may be handled by reading a little more data and trying again."
230243
msgstr ""
231244
"変換するデータが不完全な場合に送出される例外です。通常はプログラムのエラーではなく、多少追加読み込みを行って再度変換を試みることで対処できます。"
232245

233-
#: ../../library/binascii.rst:180
246+
#: ../../library/binascii.rst:185
234247
msgid "Module :mod:`base64`"
235248
msgstr ":mod:`base64` モジュール"
236249

237-
#: ../../library/binascii.rst:179
250+
#: ../../library/binascii.rst:184
238251
msgid ""
239252
"Support for RFC compliant base64-style encoding in base 16, 32, 64, and 85."
240253
msgstr "RFC 準拠の base64 形式の、底が 16、32、64、85 のエンコーディング。"
241254

242-
#: ../../library/binascii.rst:183
255+
#: ../../library/binascii.rst:188
243256
msgid "Module :mod:`binhex`"
244257
msgstr ":mod:`binhex` モジュール"
245258

246-
#: ../../library/binascii.rst:183
259+
#: ../../library/binascii.rst:188
247260
msgid "Support for the binhex format used on the Macintosh."
248261
msgstr "Macintosh で使われる binhex フォーマットのサポート。"
249262

250-
#: ../../library/binascii.rst:186
263+
#: ../../library/binascii.rst:191
251264
msgid "Module :mod:`uu`"
252265
msgstr ":mod:`uu` モジュール"
253266

254-
#: ../../library/binascii.rst:186
267+
#: ../../library/binascii.rst:191
255268
msgid "Support for UU encoding used on Unix."
256269
msgstr "Unix で使われる UU エンコードのサポート。"
257270

258-
#: ../../library/binascii.rst:188
271+
#: ../../library/binascii.rst:193
259272
msgid "Module :mod:`quopri`"
260273
msgstr ":mod:`quopri` モジュール"
261274

262-
#: ../../library/binascii.rst:189
275+
#: ../../library/binascii.rst:194
263276
msgid "Support for quoted-printable encoding used in MIME email messages."
264277
msgstr "MIME 電子メールメッセージで使われる quoted-printable エンコードのサポート。"

reference/expressions.po

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -860,7 +860,7 @@ msgstr ""
860860

861861
#: ../../reference/expressions.rst:669
862862
msgid "Asynchronous generator-iterator methods"
863-
msgstr ""
863+
msgstr "非同期ジェネレータイテレータメソッド"
864864

865865
#: ../../reference/expressions.rst:671
866866
msgid ""
@@ -1186,13 +1186,18 @@ msgid ""
11861186
"this is equivalent to a call with M+4 positional arguments *x1*, *x2*, *y1*,"
11871187
" ..., *yM*, *x3*, *x4*."
11881188
msgstr ""
1189+
"関数呼び出しに ``*expression`` という構文が現れる場合は、 ``expression`` の評価結果は :term:`イテラブル <iterable>` でなければなりません。\n"
1190+
"そのイテラブルの要素は、追加の位置引数であるかのように扱われます。\n"
1191+
"``f(x1, x2, *y, x3, x4)`` という呼び出しにおいて、 *y* の評価結果がシーケンス *y1*, ..., *yM* だった場合は、この呼び出しは M+4 個の位置引数 *x1*, *x2*, *y1*, ..., *yM*, *x3*, *x4* での呼び出しと同じになります。"
11891192

11901193
#: ../../reference/expressions.rst:985
11911194
msgid ""
11921195
"A consequence of this is that although the ``*expression`` syntax may appear"
11931196
" *after* explicit keyword arguments, it is processed *before* the keyword "
11941197
"arguments (and any ``**expression`` arguments -- see below). So::"
11951198
msgstr ""
1199+
"この結論としては、 ``*expression`` 構文がキーワード引数の *後ろ* に来ることもありますが、キーワード引数 (と任意の ``**expression`` 引数 -- 下を参照) よりも *前* にあるものとして処理されます。\n"
1200+
"従って、このような動作になります::"
11961201

11971202
#: ../../reference/expressions.rst:1001
11981203
msgid ""
@@ -1209,6 +1214,8 @@ msgid ""
12091214
"explicit keyword argument, or from another unpacking), a :exc:`TypeError` "
12101215
"exception is raised."
12111216
msgstr ""
1217+
"関数呼び出しで ``**expression`` 構文が使われた場合、 ``expression`` の評価結果は :term:`マッピング <mapping>` でなければなりません。その内容は追加のキーワード引数として扱われます。\n"
1218+
"キーワードが (明示的なキーワード引数として、あるいは他のアンパッキングの中に) 既に存在する場合、 :exc:`TypeError` 例外が送出されます。"
12121219

12131220
#: ../../reference/expressions.rst:1013
12141221
msgid ""
@@ -1223,6 +1230,8 @@ msgid ""
12231230
"arguments may follow iterable unpackings (``*``), and keyword arguments may "
12241231
"follow dictionary unpackings (``**``). Originally proposed by :pep:`448`."
12251232
msgstr ""
1233+
"関数呼び出しは任意の数の ``*`` アンパッキングと ``**`` アンパッキングを受け取り、位置引数はイテラブルアンパッキング (``*``) の後ろに置け、キーワード引数は辞書アンパッキング (``**``) の後ろに置けるようになりました。\n"
1234+
"最初に :pep:`448` で提案されました。"
12261235

12271236
#: ../../reference/expressions.rst:1022
12281237
msgid ""
@@ -1642,6 +1651,8 @@ msgid ""
16421651
"customize their comparison behavior by implementing :dfn:`rich comparison "
16431652
"methods` like :meth:`__lt__`, described in :ref:`customization`."
16441653
msgstr ""
1654+
"全ての型は (直接的あるいは間接的に) :class:`object` のサブクラスとなっているので、デフォルトの比較の振る舞いを :class:`object` から継承しています。\n"
1655+
":ref:`customization` で解説されているように、型を使って :dfn:`rich comparison methods` である :meth:`__lt__` などのメソッドを実装することで、 比較の振る舞いをカスタマイズできます。"
16451656

16461657
#: ../../reference/expressions.rst:1394
16471658
msgid ""
@@ -1662,6 +1673,8 @@ msgid ""
16621673
"provided; an attempt raises :exc:`TypeError`. A motivation for this default"
16631674
" behavior is the lack of a similar invariant as for equality."
16641675
msgstr ""
1676+
"デフォルトの順序比較 (``<``, ``>``, ``<=``, ``>=``) は提供されません; 比較しようとすると :exc:`TypeError` が送出されます。\n"
1677+
"この振る舞いをデフォルトの振る舞いにした動機は、等価性と同じような不変性が欠けているからです。"
16651678

16661679
#: ../../reference/expressions.rst:1405
16671680
msgid ""

0 commit comments

Comments
 (0)