Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 62ff6fa

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent d49f47f commit 62ff6fa

File tree

5 files changed

+5947
-5903
lines changed

5 files changed

+5947
-5903
lines changed

library/exceptions.po

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# Translators:
77
# tomo, 2020
88
# Shuuji Mihara <[email protected]>, 2021
9+
# Takanori Suzuki <[email protected]>, 2021
910
#
1011
#, fuzzy
1112
msgid ""
@@ -14,7 +15,7 @@ msgstr ""
1415
"Report-Msgid-Bugs-To: \n"
1516
"POT-Creation-Date: 2021-04-30 17:15+0000\n"
1617
"PO-Revision-Date: 2020-05-30 12:02+0000\n"
17-
"Last-Translator: Shuuji Mihara <[email protected]>, 2021\n"
18+
"Last-Translator: Takanori Suzuki <[email protected]>, 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"
@@ -112,6 +113,9 @@ msgid ""
112113
":exc:`AttributeError`), while leaving the old exception available in "
113114
":attr:`__context__` for introspection when debugging."
114115
msgstr ""
116+
":keyword:`from <raise>` に続く式は例外か ``None`` でなくてはなりません。\n"
117+
"式は送出される例外の :attr:`__cause__` として設定されます。\n"
118+
":attr:`__cause__` を設定することは、 :attr:`__suppress_context__` 属性を暗黙的に ``True`` に設定することにもなるので、 ``raise new_exc from None`` を使うことで効率的に古い例外を新しいもので置き換えて表示する (例えば、 :exc:`KeyError` を :exc:`AttributeError` に置き換え)、古い例外はデバッグ時の調査で使えるよう :attr:`__context__` に残すことができます。"
115119

116120
#: ../../library/exceptions.rst:59
117121
msgid ""

library/functions.po

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

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

10271039
#: ../../library/functions.rst:527
10281040
msgid ""
@@ -1376,6 +1388,8 @@ msgid ""
13761388
"Raises an :ref:`auditing event <auditing>` ``builtins.input`` with argument "
13771389
"``prompt`` before reading input"
13781390
msgstr ""
1391+
"入力を読み込む前に、引数 ``prompt`` 付きで :ref:`監査イベント <auditing>` ``builtins.input`` "
1392+
"を送出します。"
13791393

13801394
#: ../../library/functions.rstNone
13811395
msgid ""
@@ -1388,7 +1402,7 @@ msgstr ""
13881402
msgid ""
13891403
"Raises an auditing event ``builtins.input/result`` with the result after "
13901404
"successfully reading input."
1391-
msgstr ""
1405+
msgstr "入力の読み込みに成功した後に、その結果を監査イベント ``builtins.input/result`` を送出します。"
13921406

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

14021421
#: ../../library/functions.rst:810
14031422
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:1615
25992620
msgid ""

library/stdtypes.po

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# tomo, 2020
88
# Keigo Fushio <[email protected]>, 2020
99
# Yusuke Miyazaki <[email protected]>, 2020
10+
# Takanori Suzuki <[email protected]>, 2021
1011
#
1112
#, fuzzy
1213
msgid ""
@@ -15,7 +16,7 @@ msgstr ""
1516
"Report-Msgid-Bugs-To: \n"
1617
"POT-Creation-Date: 2021-05-03 17:16+0000\n"
1718
"PO-Revision-Date: 2020-05-30 12:10+0000\n"
18-
"Last-Translator: Yusuke Miyazaki <[email protected]>, 2020\n"
19+
"Last-Translator: Takanori Suzuki <[email protected]>, 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"
@@ -5266,7 +5267,7 @@ msgstr ""
52665267

52675268
#: ../../library/stdtypes.rst:4199
52685269
msgid "Use a dict comprehension: ``{}``, ``{x: x ** 2 for x in range(10)}``"
5269-
msgstr ""
5270+
msgstr "辞書内包表記を使う: ``{}``, ``{x: x ** 2 for x in range(10)}``"
52705271

52715272
#: ../../library/stdtypes.rst:4200
52725273
msgid ""

library/unicodedata.po

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#
66
# Translators:
77
# tomo, 2020
8+
# Takanori Suzuki <[email protected]>, 2021
89
#
910
#, fuzzy
1011
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
1314
"Report-Msgid-Bugs-To: \n"
1415
"POT-Creation-Date: 2021-01-01 16:06+0000\n"
1516
"PO-Revision-Date: 2020-05-30 12:13+0000\n"
16-
"Last-Translator: tomo, 2020\n"
17+
"Last-Translator: Takanori Suzuki <[email protected]>, 2021\n"
1718
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
1819
"MIME-Version: 1.0\n"
1920
"Content-Type: text/plain; charset=UTF-8\n"
@@ -202,6 +203,8 @@ msgid ""
202203
"Return whether the Unicode string *unistr* is in the normal form *form*. "
203204
"Valid values for *form* are 'NFC', 'NFKC', 'NFD', and 'NFKD'."
204205
msgstr ""
206+
"Unicode 文字列 *unistr* が正規形 *form* かどうかを返します。 *form* "
207+
"の有効な値は、'NFC'、'NFKC'、'NFD'、'NFKD' です。"
205208

206209
#: ../../library/unicodedata.rst:144
207210
msgid "In addition, the module exposes the following constant:"

0 commit comments

Comments
 (0)