8000 [skip ci] Update .po files · python/python-docs-ja@31ecafd · GitHub
[go: up one dir, main page]

Skip to content

Commit 31ecafd

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 96518a3 commit 31ecafd

File tree

6 files changed

+26
-15
lines changed

6 files changed

+26
-15
lines changed

c-api/init.po

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.8\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2019-12-16 12:12+0000\n"
18+
"POT-Creation-Date: 2019-12-29 12:17+0000\n"
1919
"PO-Revision-Date: 2017-02-16 17:36+0000\n"
2020
"Last-Translator: tomo, 2019\n"
2121
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -1643,13 +1643,9 @@ msgid ""
16431643
" sub-interpreters, the main interpreter has unique process-global "
16441644
"responsibilities like signal handling. It is also responsible for execution"
16451645
" during runtime initialization and is usually the active interpreter during "
1646-
"runtime finalization. The :c:func:`PyInterpreterState_Main` funtion returns"
1647-
" a pointer to its state."
1646+
"runtime finalization. The :c:func:`PyInterpreterState_Main` function "
1647+
"returns a pointer to its state."
16481648
msgstr ""
1649-
"\"メイン\" インタプリタとは、ランタイムが初期化を行ったときに最初に作成されたインタプリタのことです。\n"
1650-
"サブインタプリタと違い、メインインタプリタにはシグナルハンドリングのような、プロセス全域で唯一な責務があります。\n"
1651-
"メインインタプリタにはランタイムの初期化中の処理実行という責務もあり、通常はランタイムの終了処理中に動いているランタイムでもあります。\n"
1652-
":c:func:`PyInterpreterState_Main` 関数は、メインインタプリタの状態へのポインタを返します。"
16531649

16541650
#: /home/travis/build/python/cpython-doc-catalog/Doc/c-api/init.rst:1186
16551651
msgid ""

faq/programming.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ msgid ""
2020
msgstr ""
2121
"Project-Id-Version: Python 3.8\n"
2222
"Report-Msgid-Bugs-To: \n"
23-
"POT-Creation-Date: 2019-12-16 12:12+0000\n"
23+
"POT-Creation-Date: 2019-12-29 12:17+0000\n"
2424
"PO-Revision-Date: 2017-02-16 17:43+0000\n"
2525
"Last-Translator: tomo, 2019\n"
2626
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -1300,8 +1300,8 @@ msgstr "これは、一般的に難しい問題です。まず、先に進む前
13001300
#: /home/travis/build/python/cpython-doc-catalog/Doc/faq/programming.rst:1021
13011301
msgid ""
13021302
"Performance characteristics vary across Python implementations. This FAQ "
1303-
"focusses on :term:`CPython`."
1304-
msgstr "性能の傾向は Python 実装によって変わります。この FAQ では :term:`CPython` に焦点を当てます。"
1303+
"focuses on :term:`CPython`."
1304+
msgstr ""
13051305

13061306
#: /home/travis/build/python/cpython-doc-catalog/Doc/faq/programming.rst:1023
13071307
msgid ""

library/netrc.po

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Translators:
77
# 秘湯 <xwhhsprings@gmail.com>, 2017
88
# Arihiro TAKASE, 2017
9-
# tomo, 2017
9+
# tomo, 2019
1010
#
1111
#, fuzzy
1212
msgid ""
@@ -15,7 +15,7 @@ msgstr ""
1515
"Report-Msgid-Bugs-To: \n"
1616
"POT-Creation-Date: 2019-12-16 12:12+0000\n"
1717
"PO-Revision-Date: 2017-02-16 23:19+0000\n"
18-
"Last-Translator: tomo, 2017\n"
18+
"Last-Translator: tomo, 2019\n"
1919
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2020
"MIME-Version: 1.0\n"
2121
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,6 +55,12 @@ msgid ""
5555
"This implements security behavior equivalent to that of ftp and other "
5656
"programs that use :file:`.netrc`."
5757
msgstr ""
58+
":class:`~netrc.netrc` のインスタンスやサブクラスのインスタンスは netrc ファイルのデータをカプセル化します。\n"
59+
"初期化の際の引数が存在する場合、解析対象となるファイルの指定になります。\n"
60+
"引数がない場合、 (:func:`os.path.expanduser` で特定される) ユーザのホームディレクトリ下にある :file:`.netrc` が読み出されます。ファイルが見付からなかった場合は :exc:`FileNotFoundError` 例外が送出されます。\n"
61+
"解析エラーが発生した場合、ファイル名、行番号、解析を中断したトークンに関する情報の入った :exc:`NetrcParseError` を送出します。\n"
62+
"POSIX システムにおいて引数を指定しない場合、ファイルのオーナシップやパーミッションが安全でない (プロセスを実行しているユーザ以外が所有者であるか、誰にでも読み書き出来てしまう) のに :file:`.netrc` ファイル内にパスワードが含まれていると、 :exc:`NetrcParseError` を送出します。\n"
63+
"このセキュリティ的な振る舞いは、 ftp などの :file:`.netrc` を使うプログラムと同じものです。"
5864

5965
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/netrc.rst:35
6066
msgid "Added the POSIX permission check."
@@ -65,6 +71,8 @@ msgid ""
6571
":func:`os.path.expanduser` is used to find the location of the "
6672
":file:`.netrc` file when *file* is not passed as argument."
6773
msgstr ""
74+
"引数で *file* が渡されなかったときは、 :file:`.netrc` ファイルの場所を探すのに "
75+
":func:`os.path.expanduser` が使われるようになりました。"
6876

6977
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/netrc.rst:44
7078
msgid ""

library/random.po

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,8 @@ msgid ""
304304
"integers, floats, and fractions but excludes decimals). Weights are assumed"
305305
" to be non-negative."
306306
msgstr ""
307+
"*weights* や *cum_weights* には :func:`random` が返す :class:`float` と相互に変換できるような、あらゆる型を使用できます (int、float、fraction を含みますが、decimal は除きます)。\n"
308+
"重みは非負だと想定されています。"
307309

308310
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/random.rst:166
309311
msgid ""

library/symtable.po

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# Shun Sakurai, 2017
88
# E. Kawashima, 2017
99
# Arihiro TAKASE, 2017
10+
# tomo, 2019
1011
#
1112
#, fuzzy
1213
msgid ""
@@ -15,7 +16,7 @@ msgstr ""
1516
"Report-Msgid-Bugs-To: \n"
1617
"POT-Creation-Date: 2019-12-16 12:12+0000\n"
1718
"PO-Revision-Date: 2017-02-16 23:29+0000\n"
18-
"Last-Translator: Arihiro TAKASE, 2017\n"
19+
"Last-Translator: tomo, 2019\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"
@@ -142,7 +143,7 @@ msgstr "この関数のグローバル変数の名前からなるタプルを返
142143

143144
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/symtable.rst:110
144145
msgid "Return a tuple containing names of nonlocals in this function."
145-
msgstr ""
146+
msgstr "この関数の非ローカル変数の名前からなるタプルを返します。"
146147

147148
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/symtable.rst:114
148149
msgid "Return a tuple containing names of free variables in this function."
@@ -184,7 +185,7 @@ msgstr "記号がグローバルならば ``True`` を返します。"
184185

185186
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/symtable.rst:153
186187
msgid "Return ``True`` if the symbol is nonlocal."
187-
msgstr ""
188+
msgstr "記号が非ローカルならば ``True`` を返します。"
188189

189190
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/symtable.rst:157
190191
msgid ""

library/telnetlib.po

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,8 @@ msgid ""
223223
"Raises an :ref:`auditing event <auditing>` ``telnetlib.Telnet.open`` with "
224224
"arguments ``self``, ``host``, ``port``."
225225
msgstr ""
226+
"引数 ``self``, ``host``, ``port`` 付きで :ref:`監査イベント <auditing>` "
227+
"``telnetlib.Telnet.open`` を送出します。"
226228

227229
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/telnetlib.rst:149
228230
msgid ""
@@ -268,6 +270,8 @@ msgid ""
268270
"Raises an :ref:`auditing event <auditing>` ``telnetlib.Telnet.write`` with "
269271
"arguments ``self``, ``buffer``."
270272
msgstr ""
273+
"引数 ``self``, ``buffer`` 付きで :ref:`監査イベント <auditing>` "
274+
"``telnetlib.Telnet.write`` を送出します。"
271275

272276
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/telnetlib.rst:183
273277
msgid ""

0 commit comments

Comments
 (0)
0