Skip to content

Commit 5197e80

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent b90d41c commit 5197e80

34 files changed

+288
-84
lines changed

c-api/init.po

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#
66
# Translators:
77
# tomo, 2019
8+
# Tetsuo Koyama <tkoyama010@gmail.com>, 2020
89
#
910
#, fuzzy
1011
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
1314
"Report-Msgid-Bugs-To: \n"
1415
"POT-Creation-Date: 2020-02-09 18:48+0900\n"
1516
"PO-Revision-Date: 2018-06-29 17:51+0000\n"
16-
"Last-Translator: tomo, 2019\n"
17+
"Last-Translator: Tetsuo Koyama <tkoyama010@gmail.com>, 2020\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"
@@ -1584,6 +1585,10 @@ msgid ""
15841585
"it. The profile function is called for all monitored events except "
15851586
":const:`PyTrace_LINE` and :const:`PyTrace_EXCEPTION`."
15861587
msgstr ""
1588+
"プロファイル関数を *func* に設定します。\n"
1589+
"*obj* パラメータは関数の第一パラメータとして渡されるもので、何らかの Python オブジェクトあるいは *NULL* です。\n"
1590+
"プロファイル関数がスレッド状態を維持する必要があるなら、各々のスレッドに異なる *obj* を使うことで、状態を記憶しておく便利でスレッドセーフな場所を提供できます。\n"
1591+
"プロファイル関数は、モニタされているイベントのうち、 :const:`PyTrace_LINE`, :const:`PyTrace_EXCEPTION` を除く全てのイベントに対して呼び出されます。"
15871592

15881593
#: ../../c-api/init.rst:1146
15891594
msgid ""

c-api/sys.po

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# Translators:
77
# tomo, 2018
88
# Osamu NAKAMURA, 2019
9+
# Tetsuo Koyama <tkoyama010@gmail.com>, 2020
910
#
1011
#, fuzzy
1112
msgid ""
@@ -14,7 +15,7 @@ msgstr ""
1415
"Report-Msgid-Bugs-To: \n"
1516
"POT-Creation-Date: 2020-02-09 18:48+0900\n"
1617
"PO-Revision-Date: 2018-06-29 17:51+0000\n"
17-
"Last-Translator: Osamu NAKAMURA, 2019\n"
18+
"Last-Translator: Tetsuo Koyama <tkoyama010@gmail.com>, 2020\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"
@@ -129,7 +130,7 @@ msgstr ""
129130

130131
#: ../../c-api/sys.rst:76
131132
msgid "the current locale encoding (``LC_CTYPE`` locale)."
132-
msgstr ""
133+
msgstr "現在のロケールエンコーディング (``LC_CTYPE`` ロケール)"
133134

134135
#: ../../c-api/sys.rst:78
135136
msgid ""
@@ -381,3 +382,8 @@ msgid ""
381382
"finalization will have completed before the cleanup function, no Python APIs"
382383
" should be called by *func*."
383384
msgstr ""
385+
":c:func:`Py_FinalizeEx` から呼び出される後始末処理を行う関数 (cleanup function) "
386+
"を登録します。後始末関数は引数無しで呼び出され、値を返しません。最大で 32 の後始末処理関数を登録できます。登録に成功すると、 "
387+
":c:func:`Py_AtExit` は ``0`` を返します; 失敗すると ``-1`` "
388+
"を返します。最後に登録した後始末処理関数から先に呼び出されます。各関数は高々一度しか呼び出されません。 Python "
389+
"の内部的な終了処理は後始末処理関数より以前に完了しているので、 *func* からはいかなる Python API も呼び出してはなりません。"

c-api/typeobj.po

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#
66
# Translators:
77
# tomo, 2018
8+
# Tetsuo Koyama <tkoyama010@gmail.com>, 2020
89
#
910
#, fuzzy
1011
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
1314
"Report-Msgid-Bugs-To: \n"
1415
"POT-Creation-Date: 2020-02-09 18:48+0900\n"
1516
"PO-Revision-Date: 2018-06-29 17:46+0000\n"
16-
"Last-Translator: tomo, 2018\n"
17+
"Last-Translator: Tetsuo Koyama <tkoyama010@gmail.com>, 2020\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"
@@ -1828,6 +1829,9 @@ msgid ""
18281829
":c:func:`PyObject_Size`, and has the same signature. This slot may be set "
18291830
"to *NULL* if the object has no defined length."
18301831
msgstr ""
1832+
"この関数は :c:func:`PyMapping_Size` や :c:func:`PyObject_Size` "
1833+
"から利用され、それらと同じシグネチャを持っています。オブジェクトが定義された長さを持たない場合は、このスロットは *NULL* "
1834+
"に設定されることがあります。"
18311835

18321836
#: ../../c-api/typeobj.rst:1160
18331837
msgid ""

distutils/builtdist.po

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#
66
# Translators:
77
# tomo, 2018
8+
# Tetsuo Koyama <tkoyama010@gmail.com>, 2020
89
#
910
#, fuzzy
1011
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
1314
"Report-Msgid-Bugs-To: \n"
1415
"POT-Creation-Date: 2020-02-09 18:48+0900\n"
1516
"PO-Revision-Date: 2018-06-29 17:18+0000\n"
16-
"Last-Translator: tomo, 2018\n"
17+
"Last-Translator: Tetsuo Koyama <tkoyama010@gmail.com>, 2020\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"
@@ -70,6 +71,10 @@ msgid ""
7071
" are, a packager uses the setup script and the :command:`bdist` command "
7172
"family to generate built distributions."
7273
msgstr ""
74+
"もちろん、モジュール開発者自身がパッケージ作成者かもしれません; "
75+
"また、パッケージを作成するのはオリジナルの作成者が利用できないプラットフォームにアクセスできるような \"外部の\" "
76+
"ボランティアかもしれませんし、ソース配布物を定期的に取り込んで、アクセスできるかぎりのプラットフォーム向けにビルド済み配布物を生成するソフトウェアかもしれません。作業を行うのが誰であれ、パッケージ作成者は"
77+
" setup スクリプトを利用し、 :command:`bdist` コマンドファミリを使ってビルド済み配布物を作成します。"
7378

7479
#: ../../distutils/builtdist.rst:32
7580
msgid ""

distutils/configfile.po

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#
66
# Translators:
77
# tomo, 2018
8+
# Tetsuo Koyama <tkoyama010@gmail.com>, 2020
89
#
910
#, fuzzy
1011
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
1314
"Report-Msgid-Bugs-To: \n"
1415
"POT-Creation-Date: 2020-02-09 18:48+0900\n"
1516
"PO-Revision-Date: 2018-06-29 17:18+0000\n"
16-
"Last-Translator: tomo, 2018\n"
17+
"Last-Translator: Tetsuo Koyama <tkoyama010@gmail.com>, 2020\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"
@@ -77,7 +78,7 @@ msgstr ""
7778

7879
#: ../../distutils/configfile.rst:39
7980
msgid "The basic syntax of the configuration file is simple:"
80-
msgstr ""
81+
msgstr "設定ファイルの基本的な構文は簡単なものです:"
8182

8283
#: ../../distutils/configfile.rst:47
8384
msgid ""
@@ -99,13 +100,15 @@ msgstr ""
99100
msgid ""
100101
"You can find out the list of options supported by a particular command with "
101102
"the universal :option:`!--help` option, e.g."
102-
msgstr ""
103+
msgstr "あるコマンドがサポートしているオプションのリストは、 :option:`!--help` オプションで調べられます。例えば以下のように。"
103104

104105
#: ../../distutils/configfile.rst:73
105106
msgid ""
106107
"Note that an option spelled :option:`!--foo-bar` on the command-line is "
107108
"spelled ``foo_bar`` in configuration files."
108109
msgstr ""
110+
"コマンドライン上で :option:`!--foo-bar` と綴るオプションは、設定ファイル上では ``foo_bar`` "
111+
"と綴るので注意してください。"
109112

110113
#: ../../distutils/configfile.rst:78
111114
msgid ""

distutils/packageindex.po

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#
66
# Translators:
77
# tomo, 2019
8+
# Tetsuo Koyama <tkoyama010@gmail.com>, 2020
89
#
910
#, fuzzy
1011
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
1314
"Report-Msgid-Bugs-To: \n"
1415
"POT-Creation-Date: 2020-02-09 18:48+0900\n"
1516
"PO-Revision-Date: 2018-06-29 17:18+0000\n"
16-
"Last-Translator: tomo, 2019\n"
17+
"Last-Translator: Tetsuo Koyama <tkoyama010@gmail.com>, 2020\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"
@@ -261,6 +262,9 @@ msgid ""
261262
" URL configured in the file. The format of a :file:`.pypirc` file is as "
262263
"follows:"
263264
msgstr ""
265+
":command:`register`, :command:`upload` コマンドともに、 :file:`.pypirc` ファイルが "
266+
":file:`$HOME/.pypirc` にいるかどうかをチェックします。このファイルがあれば、これらコマンドはユーザ名、パスワード、登録 URL "
267+
"として、このファイルで設定されているものを使います。 :file:`.pypirc` ファイルのフォーマットは以下のようなものです:"
264268

265269
#: ../../distutils/packageindex.rst:172
266270
msgid ""
@@ -297,7 +301,7 @@ msgstr "省略された場合、必要なときに入力を求められます。
297301
msgid ""
298302
"If you want to define another server a new section can be created and listed"
299303
" in the *index-servers* variable:"
300-
msgstr ""
304+
msgstr "別のサーバーを定義した場合は、新しいセクションを作成し、 *index-servers* に追加します:"
301305

302306
#: ../../distutils/packageindex.rst:203
303307
msgid ""

distutils/setupscript.po

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#
66
# Translators:
77
# tomo, 2018
8+
# Tetsuo Koyama <tkoyama010@gmail.com>, 2020
89
#
910
#, fuzzy
1011
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
1314
"Report-Msgid-Bugs-To: \n"
1415
"POT-Creation-Date: 2020-02-09 18:48+0900\n"
1516
"PO-Revision-Date: 2018-06-29 17:18+0000\n"
16-
"Last-Translator: tomo, 2018\n"
17+
"Last-Translator: Tetsuo Koyama <tkoyama010@gmail.com>, 2020\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"
@@ -1073,6 +1074,8 @@ msgid ""
10731074
"Python versions prior to 2.2.3 or 2.3. The list is available from the `PyPI"
10741075
" website <https://pypi.org/>`_."
10751076
msgstr ""
1077+
"これらのフィールドは、2.2.3 および 2.3 より以前のバージョンの Python でも互換性を持たせたい場合には指定してはなりません。リストは "
1078+
"`PyPI ウェブサイト <https://pypi.org/>`_ にあります。"
10761079

10771080
#: ../../distutils/setupscript.rst:615
10781081
msgid ""

glossary.po

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#
66
# Translators:
77
# tomo, 2019
8+
# Tetsuo Koyama <tkoyama010@gmail.com>, 2020
89
#
910
#, fuzzy
1011
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
1314
"Report-Msgid-Bugs-To: \n"
1415
"POT-Creation-Date: 2020-02-09 18:48+0900\n"
1516
"PO-Revision-Date: 2018-06-29 17:17+0000\n"
16-
"Last-Translator: tomo, 2019\n"
17+
"Last-Translator: Tetsuo Koyama <tkoyama010@gmail.com>, 2020\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"
@@ -2115,6 +2116,12 @@ msgid ""
21152116
":meth:`~collections.somenamedtuple._asdict`. Examples of struct sequences "
21162117
"include :data:`sys.float_info` and the return value of :func:`os.stat`."
21172118
msgstr ""
2119+
"(構造体シーケンス) 名付けられた要素を持つタプルです。構造体シーケンスは :term:`named tuple` "
2120+
"と同じく、要素にインデクスでも属性でアクセスできるインタフェースを公開します。しかし、名前付きタプルの "
2121+
":meth:`~collections.somenamedtuple._make` や "
2122+
":meth:`~collections.somenamedtuple._asdict` "
2123+
"のようなメソッドを持ちません。構造体シーケンスの例には、:data:`sys.float_info` や、 :func:`os.stat` "
2124+
"の返り値や、その他があります。"
21182125

21192126
#: ../../glossary.rst:1014
21202127
msgid "text encoding"

howto/descriptor.po

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#
66
# Translators:
77
# tomo, 2019
8+
# Tetsuo Koyama <tkoyama010@gmail.com>, 2020
89
#
910
#, fuzzy
1011
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
1314
"Report-Msgid-Bugs-To: \n"
1415
"POT-Creation-Date: 2020-02-09 18:48+0900\n"
1516
"PO-Revision-Date: 2018-06-29 17:45+0000\n"
16-
"Last-Translator: tomo, 2019\n"
17+
"Last-Translator: Tetsuo Koyama <tkoyama010@gmail.com>, 2020\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"
@@ -315,6 +316,7 @@ msgid ""
315316
"Properties, bound methods, static methods, and class methods are all based "
316317
"on the descriptor protocol."
317318
msgstr ""
319+
"このプロトコルは単純ですが、ワクワクする可能性も秘めています。ユースケースの中には、あまりに一般的なので個別の関数の呼び出しにまとめられたものもあります。プロパティ、束縛のメソッド、静的メソッド、そしてクラスメソッドは、全てデスクリプタプロトコルに基づいています。"
318320

319321
#: ../../howto/descriptor.rst:188
320322
msgid "Properties"
@@ -384,6 +386,10 @@ msgid ""
384386
"convention, the instance reference is called *self* but may be called *this*"
385387
" or any other variable name."
386388
msgstr ""
389+
"クラス辞書は、メソッドを関数として保存します。クラス定義内で、メソッドは、関数を使うのに便利なツール、 :keyword:`def` か "
390+
":keyword:`lambda` "
391+
"を使って書かれます。メソッドの標準の関数との唯一の違いは、第一引数がオブジェクトインスタンスのために予約されていることです。 Python "
392+
"の慣習では、このインスタンスの参照は *self* と呼ばれますが、 *this* その他の好きな変数名で呼び出せます。"
387393

388394
#: ../../howto/descriptor.rst:275
389395
msgid ""
@@ -392,6 +398,9 @@ msgid ""
392398
"non-data descriptors which return bound methods when they are invoked from "
393399
"an object. In pure python, it works like this::"
394400
msgstr ""
401+
"メソッドの呼び出しをサポートするために、関数の :meth:`__get__` "
402+
"メソッドは属性アクセス時にメソッドを束縛します。これにより、すべての関数は、それがオブジェクトによって呼び出されたとき、束縛メソッドを返す非データデスクリプタになります。pure"
403+
" Python では、これはこのようにはたらきます::"
395404

396405
#: ../../howto/descriptor.rst:288
397406
msgid ""

install/index.po

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#
66
# Translators:
77
# tomo, 2018
8+
# Tetsuo Koyama <tkoyama010@gmail.com>, 2020
89
#
910
#, fuzzy
1011
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
1314
"Report-Msgid-Bugs-To: \n"
1415
"POT-Creation-Date: 2020-02-09 18:48+0900\n"
1516
"PO-Revision-Date: 2018-06-29 17:19+0000\n"
16-
"Last-Translator: tomo, 2018\n"
17+
"Last-Translator: Tetsuo Koyama <tkoyama010@gmail.com>, 2020\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"
@@ -483,6 +484,14 @@ msgid ""
483484
"system, I type the three Python statements shown below, and get the output "
484485
"as shown, to find out my :file:`{prefix}` and :file:`{exec-prefix}`:"
485486
msgstr ""
487+
":file:`{prefix}` および :file:`{exec-prefix}` は、 Python "
488+
"がインストールされているディレクトリと、実行時にライブラリを探しにいく場所を表します。これらのディレクトリは、Windows では常に同じで、 "
489+
"Unixと Mac OS X でもほぼ常に同じです。自分の Python がどんな :file:`{prefix}` や :file:`{exec-"
490+
"prefix}` を使っているかは、Python を対話モードで起動して、単純なコマンドをいくつか入力すればわかります。 Windows では、 "
491+
":menuselection:`スタート --> (すべての) プログラム --> Python X.Y --> Python (command "
492+
"line)` を選びます。Unix では、シェルプロンプトで単に ``python`` と入力します。インタプリタを起動すると、プロンプトに "
493+
"Python コードを入力できます。例えば、著者の使っている Linux システムで、三つの Python "
494+
"文を以下のように入力すると、出力から著者のシステムの :file:`{prefix}` と :file:`{exec-prefix}` を得られます:"
486495

487496
#: ../../install/index.rst:298
488497
msgid ""
@@ -1076,10 +1085,12 @@ msgid ""
10761085
"options into your Distutils config file (see section :ref:`inst-config-"
10771086
"files`):"
10781087
msgstr ""
1088+
"言うまでもないことですが、毎回新たなモジュールディストリビューションをインストールする度にインストールスキーム全体の指定を行っていては面倒です。そこで、オプションは"
1089+
" Distutils 設定ファイル (:ref:`inst-config-files` 参照) にも指定できます:"
10791090

10801091
#: ../../install/index.rst:638
10811092
msgid "or, equivalently,"
1082-
msgstr ""
1093+
msgstr "また、以下のようにも指定できます、 "
10831094

10841095
#: ../../install/index.rst:649
10851096
msgid ""
@@ -1199,6 +1210,10 @@ msgid ""
11991210
":option:`-S` switch is supplied to suppress this behaviour. So you could "
12001211
"simply edit :file:`site.py` and add two lines to it:"
12011212
msgstr ""
1213+
"やや便利さには欠けますが、Python の標準ライブラリ中にある :file:`site.py` ファイルを編集することでも、 "
1214+
"``sys.path`` を変更できます。 :file:`site.py` は、 :option:`-S` "
1215+
"スイッチを与えて抑制しないかぎり、Python インタープリタが実行される際に自動的に import されます。ただし、設定するには、単に "
1216+
":file:`site.py` を編集して、例えば以下のような二行を加えます:"
12021217

12031218
#: ../../install/index.rst:734
12041219
msgid ""
@@ -1417,7 +1432,7 @@ msgstr ""
14171432
msgid ""
14181433
"For example, the following is a complete config file that just forces all "
14191434
"commands to run quietly by default:"
1420-
msgstr ""
1435+
msgstr "例えば、以下は全てのコマンドに対してデフォルトでメッセージを出さないよう強制するための完全な設定ファイルです:"
14211436

14221437
#: ../../install/index.rst:857
14231438
msgid ""
@@ -1439,6 +1454,8 @@ msgid ""
14391454
":command:`build\\*` commands always forcibly rebuild all files with the "
14401455
"following:"
14411456
msgstr ""
1457+
"以下のようにして、デフォルトの \"ビルドベース\" ディレクトリをオーバーライドしたり、 :command:`build\\*` "
1458+
"コマンドが常に強制的にリビルドを行うようにもできます:"
14421459

14431460
#: ../../install/index.rst:874
14441461
msgid "which corresponds to the command-line arguments ::"

0 commit comments

Comments
 (0)