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

Commitb02686b

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

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

‎library/functions.po

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1207,6 +1207,8 @@ msgid ""
12071207
"positional-only. For more info, see :ref:`the FAQ entry on positional-only "
12081208
"parameters <faq-positional-only-arguments>`."
12091209
msgstr""
1210+
":func:`help` を呼び出したときに関数の引数リストにスラッシュ (/) が現れた場合は、スラッシュより前の引数が位置のみ引数だという意味であることに注意してください。\n"
1211+
"より詳しいことは、 :ref:`位置のみ引数についての FAQ の記事 <faq-positional-only-arguments>` を参照してください。"
12101212

12111213
#:../../library/functions.rst:675
12121214
msgid""
@@ -1703,6 +1705,9 @@ msgid ""
17031705
"in Python 3.0. Refer to the documentation of the :ref:`newline <open-"
17041706
"newline-parameter>` parameter for further details."
17051707
msgstr""
1708+
"さらに ``'U'`` という許可されているモード文字がありますが、これの効果は無くなっていて非推奨とされています。\n"
1709+
"以前はこのモード文字は、テキストモードでの :term:`universal newlines` を有効にしていましたが、 Python 3.0 ではそれがデフォルトの挙動となりました。\n"
1710+
"より詳細なことは :ref:`newline <open-newline-parameter>` 引数のドキュメントを参照してください。"
17061711

17071712
#:../../library/functions.rst:1026
17081713
msgid""
@@ -2332,12 +2337,15 @@ msgid ""
23322337
"The ``@staticmethod`` form is a function :term:`decorator` -- see "
23332338
":ref:`function` for details."
23342339
msgstr""
2340+
"``@staticmethod`` 形式は関数デコレータ (:term:`decorator`) です。詳しくは :ref:`function` "
2341+
"を参照してください。"
23352342

23362343
#:../../library/functions.rst:1450
23372344
msgid""
23382345
"A static method can be called either on the class (such as ``C.f()``) or on "
23392346
"an instance (such as ``C().f()``)."
23402347
msgstr""
2348+
"静的メソッドは (``C.f()`` のよう) クラスから呼び出したり、 (``C().f()`` のように) インスタンスから呼び出したりできます。"
23412349

23422350
#:../../library/functions.rst:1453
23432351
msgid""
@@ -2362,7 +2370,7 @@ msgstr ""
23622370

23632371
#:../../library/functions.rst:1466
23642372
msgid"For more information on static methods, see :ref:`types`."
2365-
msgstr""
2373+
msgstr"静的メソッドについて詳しい情報は :ref:`types` を参照してください。"
23662374

23672375
#:../../library/functions.rst:1477
23682376
msgid""

‎library/sys.po

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ msgid ""
7676
"you need original bytes, you can get it by ``[os.fsencode(arg) for arg in "
7777
"sys.argv]``."
7878
msgstr""
79+
"Unix では、コマンドライン引数は OS からバイト列で渡されます。\n"
80+
"Python はそれをファイルシステムエンコーディングと\"surrogateescape\" エラーハンドラを使ってデコードします。\n"
81+
"オリジナルのバイト列が必要なときには、 ``[os.fsencode(arg) for arg in sys.argv]`` で取得できます。"
7982

8083
#:../../library/sys.rst:42
8184
msgid""

‎reference/datamodel.po

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
# E. Kawashima, 2017
1212
# Arihiro TAKASE, 2017
1313
# Osamu NAKAMURA, 2017
14-
# tomo, 2019
1514
# 秘湯 <xwhhsprings@gmail.com>, 2019
15+
# tomo, 2019
1616
#
1717
#,fuzzy
1818
msgid ""
@@ -21,7 +21,7 @@ msgstr ""
2121
"Report-Msgid-Bugs-To:\n"
2222
"POT-Creation-Date:2019-03-28 11:05+0900\n"
2323
"PO-Revision-Date:2017-02-16 23:38+0000\n"
24-
"Last-Translator:秘湯 <xwhhsprings@gmail.com>, 2019\n"
24+
"Last-Translator:tomo, 2019\n"
2525
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2626
"MIME-Version:1.0\n"
2727
"Content-Type:text/plain; charset=UTF-8\n"
@@ -698,7 +698,7 @@ msgstr ":attr:`__doc__`"
698698
msgid""
699699
"The function's documentation string, or ``None`` if unavailable; not "
700700
"inherited by subclasses."
701-
msgstr""
701+
msgstr"関数のドキュメンテーション文字列で、ドキュメンテーションがない場合は ``None`` になります。サブクラスに継承されません。"
702702

703703
#:../../reference/datamodel.rst:475../../reference/datamodel.rst:480
704704
#:../../reference/datamodel.rst:483../../reference/datamodel.rst:488
@@ -722,7 +722,7 @@ msgstr ":attr:`~definition.\\ __qualname__`"
722722

723723
#:../../reference/datamodel.rst:483
724724
msgid"The function's :term:`qualified name`."
725-
msgstr""
725+
msgstr"関数の :term:`qualified name` です。"
726726

727727
#:../../reference/datamodel.rst:488
728728
msgid":attr:`__module__`"
@@ -1447,6 +1447,8 @@ msgid ""
14471447
"debugger). Normally an event is triggered for each new source line - this "
14481448
"can be disabled by setting :attr:`f_trace_lines` to :const:`False`."
14491449
msgstr""
1450+
"特別な書き込み可能な属性: :attr:`f_trace` は ``None`` でない場合は、コードの実行中に様々なイベントで呼び出される関数です (デバッガが利用します)。\n"
1451+
"通常は、ソースの新しい行ごとにイベントが発行されますが、 :attr:`f_trace_lines` を :const:`False` に設定することでイベントの発行を無効化できます。"
14501452

14511453
#:../../reference/datamodel.rst:984
14521454
msgid""
@@ -1455,6 +1457,8 @@ msgid ""
14551457
"undefined interpreter behaviour if exceptions raised by the trace function "
14561458
"escape to the function being traced."
14571459
msgstr""
1460+
"実装は :attr:`f_trace_opcodes` を :const:`True` に設定して、命令コードごとのイベントの要求を許可している *かもしれません* 。\n"
1461+
"これは、トレース関数によって送出された例外がトレースされている関数に漏れ出た場合、未定義なインタープリタの振る舞いにつながるかもしれないことに注意してください。"
14581462

14591463
#:../../reference/datamodel.rst:989
14601464
msgid""

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp