Skip to content

Commit 4f2bda7

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent e363287 commit 4f2bda7

File tree

7 files changed

+6910
-6857
lines changed

7 files changed

+6910
-6857
lines changed

library/datetime.po

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
# SHIMIZU Taku <shimizu.taku@gmail.com>, 2020
1717
# tomo, 2020
1818
# mollinaca, 2021
19+
# Takanori Suzuki <takanori@takanory.net>, 2021
1920
#
2021
#, fuzzy
2122
msgid ""
@@ -24,7 +25,7 @@ msgstr ""
2425
"Report-Msgid-Bugs-To: \n"
2526
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
2627
"PO-Revision-Date: 2017-02-16 23:06+0000\n"
27-
"Last-Translator: mollinaca, 2021\n"
28+
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2021\n"
2829
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2930
"MIME-Version: 1.0\n"
3031
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1984,6 +1985,8 @@ msgid ""
19841985
"Return a :term:`named tuple` with three components: ``year``, ``week`` and "
19851986
"``weekday``. The same as ``self.date().isocalendar()``."
19861987
msgstr ""
1988+
"``year``、``week``、``weekday`` の3つで構成された :term:`named tuple` を返します。 "
1989+
"``self.date().isocalendar()`` と等価です。"
19871990

19881991
#: ../../library/datetime.rst:1411
19891992
msgid "Return a string representing the date and time in ISO 8601 format:"

library/exceptions.po

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# Osamu NAKAMURA, 2017
1414
# tomo, 2020
1515
# Shuuji Mihara <s.tk345@gmail.com>, 2021
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-04-30 06:13+0000\n"
2324
"PO-Revision-Date: 2017-02-16 23:10+0000\n"
24-
"Last-Translator: Shuuji Mihara <s.tk345@gmail.com>, 2021\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"
@@ -119,6 +120,9 @@ msgid ""
119120
":exc:`AttributeError`), while leaving the old exception available in "
120121
":attr:`__context__` for introspection when debugging."
121122
msgstr ""
123+
":keyword:`from <raise>` に続く式は例外か ``None`` でなくてはなりません。\n"
124+
"式は送出される例外の :attr:`__cause__` として設定されます。\n"
125+
":attr:`__cause__` を設定することは、 :attr:`__suppress_context__` 属性を暗黙的に ``True`` に設定することにもなるので、 ``raise new_exc from None`` を使うことで効率的に古い例外を新しいもので置き換えて表示する (例えば、 :exc:`KeyError` を :exc:`AttributeError` に置き換え)、古い例外はデバッグ時の調査で使えるよう :attr:`__context__` に残すことができます。"
122126

123127
#: ../../library/exceptions.rst:59
124128
msgid ""

library/functions.po

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1004,6 +1004,13 @@ msgid ""
10041004
" not be used outside of function definitions even within the context of code"
10051005
" passed to the :func:`exec` function. The return value is ``None``."
10061006
msgstr ""
1007+
"この関数は Python コードの動的な実行をサポートします。 *object* "
1008+
"は文字列かコードオブジェクトでなければなりません。文字列なら、その文字列は一連の Python 文として解析され、そして (構文エラーが生じない限り) "
1009+
"実行されます。 [#]_ "
1010+
"コードオブジェクトなら、それは単純に実行されます。どの場合でも、実行されるコードはファイル入力として有効であることが期待されます "
1011+
"(リファレンスマニュアルの節 \"file-input\" を参照)。なお、 :keyword:`nonlocal`, :keyword:`yield`"
1012+
" および :keyword:`return` 文は、 :func:`exec` "
1013+
"関数に渡されたコードの文脈中においてさえ、関数定義の外では使えません。返り値は ``None`` です。"
10071014

10081015
#: ../../library/functions.rst:516
10091016
msgid ""
@@ -1017,6 +1024,11 @@ msgid ""
10171024
"*locals*, the code will be executed as if it were embedded in a class "
10181025
"definition."
10191026
msgstr ""
1027+
"いずれの場合でも、オプションの部分が省略されると、コードは現在のスコープ内で実行されます。*globals* "
1028+
"だけが与えられたなら、辞書でなくてはならず(辞書のサブクラスではない)、グローバル変数とローカル変数の両方に使われます。*globals* と "
1029+
"*locals* が与えられたなら、それぞれグローバル変数とローカル変数として使われます。*locals* "
1030+
"を指定する場合は何らかのマップ型オブジェクトでなければなりません。モジュールレベルでは、グローバルとローカルは同じ辞書です。exec が "
1031+
"*globals* と *locals* として別のオブジェクトを取った場合、コードはクラス定義に埋め込まれたかのように実行されます。"
10201032

10211033
#: ../../library/functions.rst:526
10221034
msgid ""
@@ -1370,6 +1382,8 @@ msgid ""
13701382
"Raises an :ref:`auditing event <auditing>` ``builtins.input`` with argument "
13711383
"``prompt`` before reading input"
13721384
msgstr ""
1385+
"入力を読み込む前に、引数 ``prompt`` 付きで :ref:`監査イベント <auditing>` ``builtins.input`` "
1386+
"を送出します。"
13731387

13741388
#: ../../library/functions.rst:793
13751389
msgid ""
@@ -1382,7 +1396,7 @@ msgstr ""
13821396
msgid ""
13831397
"Raises an auditing event ``builtins.input/result`` with the result after "
13841398
"successfully reading input."
1385-
msgstr ""
1399+
msgstr "入力の読み込みに成功した後に、その結果を監査イベント ``builtins.input/result`` を送出します。"
13861400

13871401
#: ../../library/functions.rst:802
13881402
msgid ""
@@ -1392,6 +1406,11 @@ msgid ""
13921406
"``x.__index__()``. If *x* defines :meth:`__trunc__`, it returns "
13931407
"``x.__trunc__()``. For floating point numbers, this truncates towards zero."
13941408
msgstr ""
1409+
"数値または文字列 *x* から作成された整数オブジェクトを返します。引数が与えられない場合には ``0`` を返します。\n"
1410+
"*x* に :meth:`__int__` が定義されている場合は、 ``int(x)`` は ``x.__int__()`` を返します。\n"
1411+
"*x* に :meth:`__index__` が定義されている場合は、 ```x.__index__()`` を返します。\n"
1412+
"*x* に :meth:`__trunc__` が定義されている場合は、 ```x.__trunc__()`` を返します。\n"
1413+
"浮動小数点数については、これは 0 に近い側へ切り捨てます。"
13951414

13961415
#: ../../library/functions.rst:809
13971416
msgid ""
@@ -2594,6 +2613,8 @@ msgid ""
25942613
":func:`super`. The attribute is dynamic and can change whenever the "
25952614
"inheritance hierarchy is updated."
25962615
msgstr ""
2616+
"*object-or-type* の :attr:`~class.__mro__` 属性は、 :func:`getattr` と "
2617+
":func:`super` の 両方で使われる、メソッド解決の探索順序を列記します。 この属性は動的で、継承の階層構造が更新されれば、随時変化します。"
25972618

25982619
#: ../../library/functions.rst:1619
25992620
msgid ""

library/stdtypes.po

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
# tomo, 2020
1919
# Keigo Fushio <fushio.keigo@gmail.com>, 2020
2020
# Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2020
21+
# Takanori Suzuki <takanori@takanory.net>, 2021
2122
#
2223
#, fuzzy
2324
msgid ""
@@ -26,7 +27,7 @@ msgstr ""
2627
"Report-Msgid-Bugs-To: \n"
2728
"POT-Creation-Date: 2021-05-04 06:48+0000\n"
2829
"PO-Revision-Date: 2017-02-16 23:27+0000\n"
29-
"Last-Translator: Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2020\n"
30+
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2021\n"
3031
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
3132
"MIME-Version: 1.0\n"
3233
"Content-Type: text/plain; charset=UTF-8\n"
@@ -3920,10 +3921,12 @@ msgid ""
39203921
"``bytes[len(prefix):]``. Otherwise, return a copy of the original binary "
39213922
"data::"
39223923
msgstr ""
3924+
"バリナリーデータが文字列 *prefix* で始まる場合、 ``bytes[len(prefix):]`` "
3925+
"を返します。それ以外の場合、元のバイナリーデータのコピーを返します::"
39233926

39243927
#: ../../library/stdtypes.rst:2647
39253928
msgid "The *prefix* may be any :term:`bytes-like object`."
3926-
msgstr ""
3929+
msgstr "*prefix* は、任意の :term:`bytes-like object` にできます。"
39273930

39283931
#: ../../library/stdtypes.rst:2651 ../../library/stdtypes.rst:2673
39293932
#: ../../library/stdtypes.rst:2802 ../../library/stdtypes.rst:2895
@@ -3945,10 +3948,12 @@ msgid ""
39453948
"empty, return ``bytes[:-len(suffix)]``. Otherwise, return a copy of the "
39463949
"original binary data::"
39473950
msgstr ""
3951+
"バイナリーデータが文字列 *suffix* で終わり、 *suffix* が空でない場合、 ``bytes[:-len(suffix)]`` "
3952+
"を返します。それ以外の場合、元のバイナリーデータのコピーを返します::"
39483953

39493954
#: ../../library/stdtypes.rst:2669
39503955
msgid "The *suffix* may be any :term:`bytes-like object`."
3951-
msgstr ""
3956+
msgstr "*suffix* は、任意の :term:`bytes-like object` にできます。"
39523957

39533958
#: ../../library/stdtypes.rst:2682
39543959
msgid ""
@@ -5360,7 +5365,7 @@ msgstr ""
53605365

53615366
#: ../../library/stdtypes.rst:4324
53625367
msgid "Use a dict comprehension: ``{}``, ``{x: x ** 2 for x in range(10)}``"
5363-
msgstr ""
5368+
msgstr "辞書内包表記を使う: ``{}``, ``{x: x ** 2 for x in range(10)}``"
53645369

53655370
#: ../../library/stdtypes.rst:4325
53665371
msgid ""
@@ -6147,7 +6152,7 @@ msgstr ""
61476152

61486153
#: ../../library/stdtypes.rst:4921
61496154
msgid ":pep:`585` -- \"Type Hinting Generics In Standard Collections\""
6150-
msgstr ""
6155+
msgstr ":pep:`585` -- \"標準コレクション型の型ヒントにおける総称型 (generics) の使用\""
61516156

61526157
#: ../../library/stdtypes.rst:4922
61536158
msgid ":meth:`__class_getitem__` -- Used to implement parameterized generics."

library/unicodedata.po

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# Nozomu Kaneko <nozom.kaneko@gmail.com>, 2017
99
# Arihiro TAKASE, 2017
1010
# Tetsuo Koyama <tkoyama010@gmail.com>, 2020
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:33+0000\n"
19-
"Last-Translator: Tetsuo Koyama <tkoyama010@gmail.com>, 2020\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"
@@ -35,6 +36,9 @@ msgid ""
3536
"in this database is compiled from the `UCD version 13.0.0 "
3637
"<https://www.unicode.org/Public/13.0.0/ucd>`_."
3738
msgstr ""
39+
"このモジュールは、すべてのユニコード文字の文字プロパティを定義するユニコード文字データベース (UCD) "
40+
"へのアクセスを提供します。このデータベースに含まれているデータは、 `UCD バージョン 13.0.0 "
41+
"<https://www.unicode.org/Public/13.0.0/ucd>`_ から作成されています。"
3842

3943
#: ../../library/unicodedata.rst:23
4044
msgid ""
@@ -205,6 +209,8 @@ msgid ""
205209
"Return whether the Unicode string *unistr* is in the normal form *form*. "
206210
"Valid values for *form* are 'NFC', 'NFKC', 'NFD', and 'NFKD'."
207211
msgstr ""
212+
"Unicode 文字列 *unistr* が正規形 *form* かどうかを返します。 *form* "
213+
"の有効な値は、'NFC'、'NFKC'、'NFD'、'NFKD' です。"
208214

209215
#: ../../library/unicodedata.rst:144
210216
msgid "In addition, the module exposes the following constant:"
@@ -233,8 +239,8 @@ msgstr "脚注"
233239

234240
#: ../../library/unicodedata.rst:178
235241
msgid "https://www.unicode.org/Public/13.0.0/ucd/NameAliases.txt"
236-
msgstr ""
242+
msgstr "https://www.unicode.org/Public/13.0.0/ucd/NameAliases.txt"
237243

238244
#: ../../library/unicodedata.rst:180
239245
msgid "https://www.unicode.org/Public/13.0.0/ucd/NamedSequences.txt"
240-
msgstr ""
246+
msgstr "https://www.unicode.org/Public/13.0.0/ucd/NamedSequences.txt"

0 commit comments

Comments
 (0)