Skip to content

Commit 04aea36

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 9fbf110 commit 04aea36

8 files changed

Lines changed: 2705 additions & 2708 deletions

File tree

c-api/init.po

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-01-29 12:25+0900\n"
11+
"POT-Creation-Date: 2018-02-10 12:31+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: Osamu NAKAMURA, 2017\n"
1414
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -82,13 +82,9 @@ msgid ""
8282
"since the last call to :c:func:`Py_Initialize`. Ideally, this frees all "
8383
"memory allocated by the Python interpreter. This is a no-op when called for"
8484
" a second time (without calling :c:func:`Py_Initialize` again first). "
85-
"Normally the return value is 0. If there were errors during finalization "
86-
"(flushing buffered data), -1 is returned."
85+
"Normally the return value is ``0``. If there were errors during "
86+
"finalization (flushing buffered data), ``-1`` is returned."
8787
msgstr ""
88-
":c:func:`Py_Initialize` とそれ以後の Python/C API 関数で行った全ての初期化処理を取り消し、最後の :c:func:`Py_Initialize` 呼び出し以後に Python インタプリタが生成した全てのサブインタプリタ (sub-interpreter, 下記の :c:func:`Py_NewInterpreter` を参照) を消去します。\n"
89-
"理想的な状況では、この関数によって Python インタプリタが確保したメモリは全て解放されます。\n"
90-
"この関数を (:c:func:`Py_Initialize` を呼ばずに) 再度呼び出しても何も行いません。\n"
91-
"通常は返り値は 0 です。終了処理中 (バッファリングされたデータの書き出し) のエラーがあった場合は -1 が返されます。"
9288

9389
#: ../../c-api/init.rst:70
9490
msgid ""

c-api/long.po

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-01-30 12:25+0900\n"
11+
"POT-Creation-Date: 2018-02-10 12:31+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: cocoatomo, 2017\n"
1414
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -210,7 +210,8 @@ msgstr "もし *obj* の値が :c:type:`long` の範囲外であれば、 :exc:`
210210
#: ../../c-api/long.rst:140 ../../c-api/long.rst:154 ../../c-api/long.rst:169
211211
#: ../../c-api/long.rst:183 ../../c-api/long.rst:200 ../../c-api/long.rst:262
212212
#: ../../c-api/long.rst:274
213-
msgid "Returns -1 on error. Use :c:func:`PyErr_Occurred` to disambiguate."
213+
msgid ""
214+
"Returns ``-1`` on error. Use :c:func:`PyErr_Occurred` to disambiguate."
214215
msgstr ""
215216

216217
#: ../../c-api/long.rst:149
@@ -386,7 +387,8 @@ msgstr ""
386387
"もし *pylong* の値が :c:type:`double` の範囲外であれば、 :exc:`OverflowError` を送出します。"
387388

388389
#: ../../c-api/long.rst:285
389-
msgid "Returns -1.0 on error. Use :c:func:`PyErr_Occurred` to disambiguate."
390+
msgid ""
391+
"Returns ``-1.0`` on error. Use :c:func:`PyErr_Occurred` to disambiguate."
390392
msgstr ""
391393

392394
#: ../../c-api/long.rst:290
@@ -401,5 +403,6 @@ msgstr ""
401403
"で値を生成するときに使うような :c:type:`void` ポインタ型を生成できるだけです。"
402404

403405
#: ../../c-api/long.rst:295
404-
msgid "Returns NULL on error. Use :c:func:`PyErr_Occurred` to disambiguate."
406+
msgid ""
407+
"Returns *NULL* on error. Use :c:func:`PyErr_Occurred` to disambiguate."
405408
msgstr ""

extending/newtypes.po

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-01-05 15:01+0000\n"
11+
"POT-Creation-Date: 2018-02-10 12:31+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: Nozomu Kaneko <nozom.kaneko@gmail.com>, 2017\n"
1414
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -484,15 +484,8 @@ msgid ""
484484
"called. The initializer isn't called when unpickling objects and it can be "
485485
"overridden. Our initializer accepts arguments to provide initial values for"
486486
" our instance. Initializers always accept positional and keyword arguments. "
487-
"Initializers should return either 0 on success or -1 on error."
488-
msgstr ""
489-
"Python では :c:member:`~PyTypeObject.tp_init` メンバは :meth:`__init__` メソッドとして見えています。\n"
490-
"このメソッドは、オブジェクトが作成されたあとに、それを初期化する目的で使われます。\n"
491-
"new メソッドとはちがって、初期化メソッドは必ず呼ばれるとは限りません。\n"
492-
"初期化メソッドはオブジェクトを非 pickle 化するときは呼ばれず、上書きもできます。\n"
493-
"初期化メソッドは、インスタンスの初期値を提供するのに必要な引数を受けとります。\n"
494-
"このメソッドはつねに固定引数とキーワード引数を受けとります。\n"
495-
"初期化メソッドは成功のときは 0 、エラーのときは -1 を返すべきです。"
487+
"Initializers should return either ``0`` on success or ``-1`` on error."
488+
msgstr ""
496489

497490
#: ../../extending/newtypes.rst:397
498491
msgid ""

faq/extending.po

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-01-05 15:01+0000\n"
11+
"POT-Creation-Date: 2018-02-10 12:31+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: cocoatomo, 2017\n"
1414
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -97,15 +97,11 @@ msgstr "C から任意の Python 文を実行するにはどうしますか?"
9797
msgid ""
9898
"The highest-level function to do this is :c:func:`PyRun_SimpleString` which "
9999
"takes a single string argument to be executed in the context of the module "
100-
"``__main__`` and returns 0 for success and -1 when an exception occurred "
101-
"(including ``SyntaxError``). If you want more control, use "
100+
"``__main__`` and returns ``0`` for success and ``-1`` when an exception "
101+
"occurred (including ``SyntaxError``). If you want more control, use "
102102
":c:func:`PyRun_String`; see the source for :c:func:`PyRun_SimpleString` in "
103103
"``Python/pythonrun.c``."
104104
msgstr ""
105-
"これを行う最高水準の関数は :c:func:`PyRun_SimpleString` で、一つの文字列引数を取り、モジュール ``__main__`` "
106-
"のコンテキストでそれを実行し、成功なら 0、例外 (``SyntaxError`` を含む) が発生したら -1 を返します。更に制御したければ、 "
107-
":c:func:`PyRun_String` を使ってください。ソースは ``Python/pythonrun.c`` の "
108-
"':c:func:`PyRun_SimpleString` を参照してください。"
109105

110106
#: ../../faq/extending.rst:72
111107
msgid "How can I evaluate an arbitrary Python expression from C?"

reference/datamodel.po

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1716,23 +1716,29 @@ msgid ""
17161716
" about to be destroyed; the current :term:`CPython` implementation only "
17171717
"calls it once."
17181718
msgstr ""
1719+
":meth:`__del__` メソッドが破棄しようとしているインスタンスへの新しい参照を作り、破棄を送らせることは (推奨されないものの) 可能です。\n"
1720+
"これはオブジェクトの *復活* と呼ばれます。\n"
1721+
"復活したオブジェクトが再度破棄される直前に :meth:`__del__` が呼び出されるかどうかは実装依存です;\n"
1722+
"現在の :term:`CPython` の実装では最初の一回しか呼び出されません。"
17191723

17201724
#: ../../reference/datamodel.rst:1176
17211725
msgid ""
17221726
"It is not guaranteed that :meth:`__del__` methods are called for objects "
17231727
"that still exist when the interpreter exits."
1724-
msgstr ""
1728+
msgstr "インタプリタが終了したときに、残存しているオブジェクトの :meth:`__del__` メソッドが呼び出される保証はありません。"
17251729

17261730
#: ../../reference/datamodel.rst:1181
17271731
msgid ""
17281732
"``del x`` doesn't directly call ``x.__del__()`` --- the former decrements "
17291733
"the reference count for ``x`` by one, and the latter is only called when "
17301734
"``x``'s reference count reaches zero."
17311735
msgstr ""
1736+
"``del x`` は直接 ``x.__del__()`` を呼び出しません --- 前者は ``x`` の参照カウントを 1 つ減らし、後者は "
1737+
"``x`` の参照カウントが 0 まで落ちたときのみ呼び出されます。"
17321738

17331739
#: ../../reference/datamodel.rst:1196
17341740
msgid "Documentation for the :mod:`gc` module."
1735-
msgstr ""
1741+
msgstr ":mod:`gc` モジュールのドキュメント。"
17361742

17371743
#: ../../reference/datamodel.rst:1200
17381744
msgid ""
@@ -2171,7 +2177,7 @@ msgstr ""
21712177

21722178
#: ../../reference/datamodel.rst:1506
21732179
msgid "Customizing module attribute access"
2174-
msgstr ""
2180+
msgstr "モジュールの属性値アクセスをカスタマイズする"
21752181

21762182
#: ../../reference/datamodel.rst:1511
21772183
msgid ""

sphinx.po

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-02-09 12:30+0900\n"
11+
"POT-Creation-Date: 2018-02-10 12:31+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: Osamu NAKAMURA, 2017\n"
1414
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -179,6 +179,10 @@ msgstr "Python の歴史とライセンス"
179179
msgid "Copyright"
180180
msgstr "Copyright"
181181

182+
#: ../../tools/templates/dummy.html:6
183+
msgid "CPython implementation detail:"
184+
msgstr "CPython 実装の詳細:"
185+
182186
#: ../../tools/templates/indexsidebar.html:1
183187
msgid "Download"
184188
msgstr "ダウンロード"
@@ -231,18 +235,6 @@ msgstr "本の一覧"
231235
msgid "Audio/Visual Talks"
232236
msgstr "発表の音声/映像"
233237

234-
#: ../../tools/templates/customsourcelink.html:3
235-
msgid "This Page"
236-
msgstr "このページ"
237-
238-
#: ../../tools/templates/customsourcelink.html:5
239-
msgid "Report a Bug"
240-
msgstr "バグ報告"
241-
242-
#: ../../tools/templates/customsourcelink.html:8
243-
msgid "Show Source"
244-
msgstr "ソースの表示"
245-
246238
#: ../../tools/templates/layout.html:10
247239
msgid "Documentation "
248240
msgstr "ドキュメント"
@@ -279,6 +271,14 @@ msgstr ""
279271
"このドキュメントは <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> %(sphinx_version)s"
280272
" を使って作成されました。"
281273

282-
#: ../../tools/templates/dummy.html:6
283-
msgid "CPython implementation detail:"
284-
msgstr "CPython 実装の詳細:"
274+
#: ../../tools/templates/customsourcelink.html:3
275+
msgid "This Page"
276+
msgstr "このページ"
277+
278+
#: ../../tools/templates/customsourcelink.html:5
279+
msgid "Report a Bug"
280+
msgstr "バグ報告"
281+
282+
#: ../../tools/templates/customsourcelink.html:8
283+
msgid "Show Source"
284+
msgstr "ソースの表示"

whatsnew/3.3.po

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-01-05 15:01+0000\n"
11+
"POT-Creation-Date: 2018-02-10 12:31+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: Shun Sakurai, 2017\n"
1414
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -4719,20 +4719,16 @@ msgstr ""
47194719
"Unicode 表現に便乗できます。"
47204720

47214721
#: ../../whatsnew/3.3.rst:2483
4722-
msgid ":c:func:`PyImport_GetMagicNumber` now returns -1 upon failure."
4723-
msgstr ":c:func:`PyImport_GetMagicNumber` は失敗時に -1 を返すようになりました。"
4722+
msgid ":c:func:`PyImport_GetMagicNumber` now returns ``-1`` upon failure."
4723+
msgstr ""
47244724

47254725
#: ../../whatsnew/3.3.rst:2485
47264726
msgid ""
47274727
"As a negative value for the *level* argument to :func:`__import__` is no "
47284728
"longer valid, the same now holds for :c:func:`PyImport_ImportModuleLevel`. "
47294729
"This also means that the value of *level* used by "
4730-
":c:func:`PyImport_ImportModuleEx` is now 0 instead of -1."
4730+
":c:func:`PyImport_ImportModuleEx` is now ``0`` instead of ``-1``."
47314731
msgstr ""
4732-
":func:`__import__` の *level* 引数に負値を渡すことはもはや有効ではないので、対応する "
4733-
":c:func:`PyImport_ImportModuleLevel` でも同じです。このことは "
4734-
":c:func:`PyImport_ImportModuleEx` に使われる *level* の値が -1 ではなく 0 "
4735-
"を使うようになったことも意味しています。"
47364732

47374733
#: ../../whatsnew/3.3.rst:2492
47384734
msgid "Building C extensions"

0 commit comments

Comments
 (0)