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

Skip to content

Commit 926b342

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent ee2f203 commit 926b342

File tree

12 files changed

+60
-27
lines changed

12 files changed

+60
-27
lines changed

c-api/bytearray.po

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Translators:
77
# shirou - しろう <[email protected]>, 2017
88
# Arihiro TAKASE, 2017
9-
# tomo, 2020
9+
# tomo, 2021
1010
#
1111
#, fuzzy
1212
msgid ""
@@ -15,7 +15,7 @@ msgstr ""
1515
"Report-Msgid-Bugs-To: \n"
1616
"POT-Creation-Date: 2021-01-07 05:06+0000\n"
1717
"PO-Revision-Date: 2017-02-16 17:33+0000\n"
18-
"Last-Translator: tomo, 2020\n"
18+
"Last-Translator: tomo, 2021\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"
@@ -49,12 +49,16 @@ msgid ""
4949
"Return true if the object *o* is a bytearray object or an instance of a "
5050
"subtype of the bytearray type. This function always succeeds."
5151
msgstr ""
52+
"オブジェクト *o* が bytearray オブジェクトか bytearray "
53+
"型のサブタイプのインスタンスである場合に真を返します。この関数は常に成功します。"
5254

5355
#: ../../c-api/bytearray.rst:33
5456
msgid ""
5557
"Return true if the object *o* is a bytearray object, but not an instance of "
5658
"a subtype of the bytearray type. This function always succeeds."
5759
msgstr ""
60+
"オブジェクト *o* が bytearray オブジェクトだが bytearray "
61+
"型のサブタイプのインスタンスではない場合に真を返します。この関数は常に成功します。"
5862

5963
#: ../../c-api/bytearray.rst:38
6064
msgid "Direct API functions"

c-api/bytes.po

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# 秘湯 <[email protected]>, 2017
99
# Osamu NAKAMURA, 2017
1010
# Arihiro TAKASE, 2017
11-
# tomo, 2020
11+
# tomo, 2021
1212
#
1313
#, fuzzy
1414
msgid ""
@@ -17,7 +17,7 @@ msgstr ""
1717
"Report-Msgid-Bugs-To: \n"
1818
"POT-Creation-Date: 2021-01-07 05:06+0000\n"
1919
"PO-Revision-Date: 2017-02-16 17:33+0000\n"
20-
"Last-Translator: tomo, 2020\n"
20+
"Last-Translator: tomo, 2021\n"
2121
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2222
"MIME-Version: 1.0\n"
2323
"Content-Type: text/plain; charset=UTF-8\n"
@@ -54,12 +54,14 @@ msgid ""
5454
"Return true if the object *o* is a bytes object or an instance of a subtype "
5555
"of the bytes type. This function always succeeds."
5656
msgstr ""
57+
"オブジェクト *o* が bytes オブジェクトか bytes 型のサブタイプのインスタンスである場合に真を返します。この関数は常に成功します。"
5758

5859
#: ../../c-api/bytes.rst:33
5960
msgid ""
6061
"Return true if the object *o* is a bytes object, but not an instance of a "
6162
"subtype of the bytes type. This function always succeeds."
6263
msgstr ""
64+
"オブジェクト *o* が bytes オブジェクトだが bytes 型のサブタイプのインスタンスでない場合に真を返します。この関数は常に成功します。"
6365

6466
#: ../../c-api/bytes.rst:39
6567
msgid ""

c-api/capsule.po

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Translators:
77
# 秘湯 <[email protected]>, 2017
88
# Arihiro TAKASE, 2017
9-
# tomo, 2020
9+
# tomo, 2021
1010
#
1111
#, fuzzy
1212
msgid ""
@@ -15,7 +15,7 @@ msgstr ""
1515
"Report-Msgid-Bugs-To: \n"
1616
"POT-Creation-Date: 2021-01-07 05:06+0000\n"
1717
"PO-Revision-Date: 2017-02-16 17:33+0000\n"
18-
"Last-Translator: tomo, 2020\n"
18+
"Last-Translator: tomo, 2021\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"
@@ -41,6 +41,10 @@ msgid ""
4141
"regular import mechanism can be used to access C APIs defined in dynamically"
4242
" loaded modules."
4343
msgstr ""
44+
"この :c:type:`PyObject` のサブタイプは、任意の値を表し、C拡張モジュールから "
45+
"Pythonコードを経由して他のC言語のコードに任意の値を(:c:type:`void*` "
46+
"ポインタの形で)渡す必要があるときに有用です。あるモジュール内で定義されているC言語関数のポインタを、他のモジュールに渡してそこから呼び出せるようにするためによく使われます。これにより、動的にロードされるモジュールの中の"
47+
" C API に通常の import 機構を通してアクセスすることができます。"
4448

4549
#: ../../c-api/capsule.rst:27
4650
msgid "The type of a destructor callback for a capsule. Defined as::"
@@ -57,7 +61,7 @@ msgstr ""
5761
msgid ""
5862
"Return true if its argument is a :c:type:`PyCapsule`. This function always "
5963
"succeeds."
60-
msgstr ""
64+
msgstr "引数が :c:type:`PyCapsule` の場合に真を返します。この関数は常に成功します。"
6165

6266
#: ../../c-api/capsule.rst:43
6367
msgid ""

c-api/file.po

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Translators:
77
# Osamu NAKAMURA, 2017
88
# Arihiro TAKASE, 2017
9-
# tomo, 2020
9+
# tomo, 2021
1010
#
1111
#, fuzzy
1212
msgid ""
@@ -15,7 +15,7 @@ msgstr ""
1515
"Report-Msgid-Bugs-To: \n"
1616
"POT-Creation-Date: 2021-03-02 05:36+0000\n"
1717
"PO-Revision-Date: 2017-02-16 17:35+0000\n"
18-
"Last-Translator: tomo, 2020\n"
18+
"Last-Translator: tomo, 2021\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"
@@ -38,6 +38,12 @@ msgid ""
3838
"reporting in the interpreter; third-party code is advised to access the "
3939
":mod:`io` APIs instead."
4040
msgstr ""
41+
"これらの API は、 Python 2 の組み込みのファイルオブジェクトの C API を最低限エミュレートするためのものです。それらは、標準 C "
42+
"ライブラリでサポートされているバッファ付き I/O (:c:type:`FILE*`) に頼るために使われます。 Python 3 "
43+
"では、ファイルとストリームは新しい :mod:`io` モジュールを使用され、そこに OS の低レベルなバッファ付き I/O "
44+
"の上にいくつかの層が定義されています。下で解説されている関数は、それらの新しい API の便利な C "
45+
"ラッパーであり、インタプリタでの内部的なエラー通知に向いています; サードパーティーのコードは代わりに :mod:`io` の API "
46+
"を使うことが推奨されます。"
4147

4248
#: ../../c-api/file.rst:22
4349
msgid ""

c-api/float.po

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# Translators:
77
# Arihiro TAKASE, 2017
8-
# tomo, 2020
8+
# tomo, 2021
99
#
1010
#, fuzzy
1111
msgid ""
@@ -14,7 +14,7 @@ msgstr ""
1414
"Report-Msgid-Bugs-To: \n"
1515
"POT-Creation-Date: 2021-01-07 05:06+0000\n"
1616
"PO-Revision-Date: 2017-02-16 17:35+0000\n"
17-
"Last-Translator: tomo, 2020\n"
17+
"Last-Translator: tomo, 2021\n"
1818
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
1919
"MIME-Version: 1.0\n"
2020
"Content-Type: text/plain; charset=UTF-8\n"
@@ -45,12 +45,16 @@ msgid ""
4545
"Return true if its argument is a :c:type:`PyFloatObject` or a subtype of "
4646
":c:type:`PyFloatObject`. This function always succeeds."
4747
msgstr ""
48+
"引数が :c:type:`PyFloatObject` か :c:type:`PyFloatObject` "
49+
"のサブタイプのときに真を返します。この関数は常に成功します。"
4850

4951
#: ../../c-api/float.rst:30
5052
msgid ""
5153
"Return true if its argument is a :c:type:`PyFloatObject`, but not a subtype "
5254
"of :c:type:`PyFloatObject`. This function always succeeds."
5355
msgstr ""
56+
"引数が :c:type:`PyFloatObject` であるが :c:type:`PyFloatObject` "
57+
"のサブタイプでないときに真を返します。この関数は常に成功します。"
5458

5559
#: ../../c-api/float.rst:36
5660
msgid ""

c-api/gen.po

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# E. Kawashima, 2017
88
# Arihiro TAKASE, 2017
99
# 秘湯 <[email protected]>, 2017
10-
# tomo, 2020
10+
# tomo, 2021
1111
#
1212
#, fuzzy
1313
msgid ""
@@ -16,7 +16,7 @@ msgstr ""
1616
"Report-Msgid-Bugs-To: \n"
1717
"POT-Creation-Date: 2021-01-07 05:06+0000\n"
1818
"PO-Revision-Date: 2017-02-16 17:35+0000\n"
19-
"Last-Translator: tomo, 2020\n"
19+
"Last-Translator: tomo, 2021\n"
2020
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2121
"MIME-Version: 1.0\n"
2222
"Content-Type: text/plain; charset=UTF-8\n"
@@ -51,13 +51,16 @@ msgstr "ジェネレータオブジェクトに対応する型オブジェクト
5151
msgid ""
5252
"Return true if *ob* is a generator object; *ob* must not be ``NULL``. This "
5353
"function always succeeds."
54-
msgstr ""
54+
msgstr "*ob* がジェネレータオブジェクトの場合に真を返ます、 *ob* は ``NULL`` であってはなりません。この関数は常に成功します。"
5555

5656
#: ../../c-api/gen.rst:31
5757
msgid ""
5858
"Return true if *ob*'s type is :c:type:`PyGen_Type`; *ob* must not be "
5959
"``NULL``. This function always succeeds."
6060
msgstr ""
61+
"*ob* が :c:type:`PyGen_Type` の場合に真を返します。\n"
62+
"*o* は ``NULL`` であってはなりません。\n"
63+
"この関数は常に成功します。"
6164

6265
#: ../../c-api/gen.rst:37
6366
msgid ""

c-api/import.po

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
# Takeshi Mizumoto <[email protected]>, 2017
88
# Arihiro TAKASE, 2017
99
# Nozomu Kaneko <[email protected]>, 2017
10-
# tomo, 2020
1110
# mollinaca, 2020
1211
# Osamu NAKAMURA, 2021
12+
# tomo, 2021
1313
#
1414
#, fuzzy
1515
msgid ""
@@ -18,7 +18,7 @@ msgstr ""
1818
"Report-Msgid-Bugs-To: \n"
1919
"POT-Creation-Date: 2021-06-24 06:41+0000\n"
2020
"PO-Revision-Date: 2017-02-16 17:35+0000\n"
21-
"Last-Translator: Osamu NAKAMURA, 2021\n"
21+
"Last-Translator: tomo, 2021\n"
2222
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2323
"MIME-Version: 1.0\n"
2424
"Content-Type: text/plain; charset=UTF-8\n"
@@ -411,6 +411,11 @@ msgid ""
411411
"no modules are added to the internal table. This must be called before "
412412
":c:func:`Py_Initialize`."
413413
msgstr ""
414+
"組み込みモジュールのテーブルに一群のモジュールを追加します。\n"
415+
"配列 *newtab* は :attr:`name` フィールドが ``NULL`` になっているセンチネル (sentinel) エントリで終端されていなければなりません。センチネル値を与えられなかった場合にはメモリ違反になるかもしれません。\n"
416+
"成功すると ``0`` を、内部テーブルを拡張するのに十分なメモリを確保できなかった場合には ``-1`` を返します。\n"
417+
"操作が失敗した場合、モジュールは一切内部テーブルに追加されません。\n"
418+
":c:func:`Py_Initialize` よりも前に呼び出さなければなりません。"
414419

415420
#: ../../c-api/import.rst:304
416421
msgid ""

faq/windows.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# 秘湯 <[email protected]>, 2017
88
# Osamu NAKAMURA, 2017
99
# Arihiro TAKASE, 2018
10-
# tomo, 2018
1110
# Mikami Akiko, 2021
11+
# tomo, 2021
1212
#
1313
#, fuzzy
1414
msgid ""
@@ -17,7 +17,7 @@ msgstr ""
1717
"Report-Msgid-Bugs-To: \n"
1818
"POT-Creation-Date: 2021-05-23 06:25+0000\n"
1919
"PO-Revision-Date: 2017-02-16 17:43+0000\n"
20-
"Last-Translator: Mikami Akiko, 2021\n"
20+
"Last-Translator: tomo, 2021\n"
2121
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2222
"MIME-Version: 1.0\n"
2323
"Content-Type: text/plain; charset=UTF-8\n"
@@ -208,7 +208,7 @@ msgstr "どうすれば Python スクリプトを EXE に出来ますか?"
208208
msgid ""
209209
"See :ref:`faq-create-standalone-binary` for a list of tools that can be used"
210210
" to make executables."
211-
msgstr ""
211+
msgstr "実行可能ファイルを作れるツールの一覧 :ref:`faq-create-standalone-binary` を参照してください。"
212212

213213
#: ../../faq/windows.rst:148
214214
msgid "Is a ``*.pyd`` file the same as a DLL?"

library/crypt.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
# Translators:
77
# 秘湯 <[email protected]>, 2017
88
# Arihiro TAKASE, 2017
9-
# tomo, 2017
109
# Nozomu Kaneko <[email protected]>, 2017
1110
# Yusuke Miyazaki <[email protected]>, 2017
1211
# Osamu NAKAMURA, 2017
12+
# tomo, 2021
1313
#
1414
#, fuzzy
1515
msgid ""
@@ -18,7 +18,7 @@ msgstr ""
1818
"Report-Msgid-Bugs-To: \n"
1919
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
2020
"PO-Revision-Date: 2017-02-16 23:04+0000\n"
21-
"Last-Translator: Osamu NAKAMURA, 2017\n"
21+
"Last-Translator: tomo, 2021\n"
2222
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2323
"MIME-Version: 1.0\n"
2424
"Content-Type: text/plain; charset=UTF-8\n"
@@ -59,7 +59,7 @@ msgstr ""
5959

6060
#: ../../library/crypt.rst:34
6161
msgid ":ref:`Availability <availability>`: Unix. Not available on VxWorks."
62-
msgstr ""
62+
msgstr ":ref:`利用可能環境 <availability>`: Unix。VxWorksでは使えません。"
6363

6464
#: ../../library/crypt.rst:36
6565
msgid "Hashing Methods"

library/numbers.po

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,10 @@ msgid ""
129129
"modulus and bit-string operations: ``<<``, ``>>``, ``&``, ``^``, ``|``, "
130130
"``~``."
131131
msgstr ""
132+
":class:`Rational` をサブタイプ化し :class:`int` への変換が加わります。 :func:`float`, "
133+
":attr:`~Rational.numerator`, :attr:`~Rational.denominator` のデフォルトを提供します。法 "
134+
"(訳注: 割る数、除数のこと) を持つ :func:`pow` に対する抽象メソッドと、ビット列演算 ``<<``, ``>>``, ``&``, "
135+
"``^``, ``|``, ``~`` を追加します。"
132136

133137
#: ../../library/numbers.rst:85
134138
msgid "Notes for type implementors"

library/sys.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
# ごはんですよ <[email protected]>, 2017
99
# E. Kawashima, 2017
1010
# Masato HASHIMOTO <[email protected]>, 2017
11-
# Osamu NAKAMURA, 2017
1211
# 秘湯 <[email protected]>, 2017
1312
# Arihiro TAKASE, 2017
1413
# Naoki Nakamura <[email protected]>, 2020
1514
# tomo, 2020
1615
# mollinaca, 2021
1716
# Takanori Suzuki <[email protected]>, 2021
17+
# Osamu NAKAMURA, 2021
1818
#
1919
#, fuzzy
2020
msgid ""
@@ -23,7 +23,7 @@ msgstr ""
2323
"Report-Msgid-Bugs-To: \n"
2424
"POT-Creation-Date: 2021-04-29 06:12+0000\n"
2525
"PO-Revision-Date: 2017-02-16 23:29+0000\n"
26-
"Last-Translator: Takanori Suzuki <[email protected]>, 2021\n"
26+
"Last-Translator: Osamu NAKAMURA, 2021\n"
2727
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2828
"MIME-Version: 1.0\n"
2929
"Content-Type: text/plain; charset=UTF-8\n"
@@ -2454,7 +2454,7 @@ msgid ""
24542454
"the preferred way to do this is to explicitly save the previous stream "
24552455
"before replacing it, and restore the saved object."
24562456
msgstr ""
2457-
"また、標準ストリームが壊れたオブジェクトに置き換えられた場合に、動作する実際のファイルを復元するために利用することもできます。しかし、明示的に置き換え前のストリームを保存しておき、そのオブジェクトを復元る事を推奨します。"
2457+
"また、標準ストリームが壊れたオブジェクトに置き換えられた場合に、動作する実際のファイルを復元するために利用することもできます。しかし、明示的に置き換え前のストリームを保存しておき、そのオブジェクトを復元する事を推奨します。"
24582458

24592459
#: ../../library/sys.rst:1537
24602460
msgid ""

tutorial/venv.po

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
# hitsumabushi.org, 2017
1111
# Tetsuo Koyama <[email protected]>, 2019
1212
# Yusuke Miyazaki <[email protected]>, 2021
13+
# tomo, 2021
1314
#
1415
#, fuzzy
1516
msgid ""
@@ -18,7 +19,7 @@ msgstr ""
1819
"Report-Msgid-Bugs-To: \n"
1920
"POT-Creation-Date: 2021-04-14 06:01+0000\n"
2021
"PO-Revision-Date: 2017-02-16 23:41+0000\n"
21-
"Last-Translator: Yusuke Miyazaki <[email protected]>, 2021\n"
22+
"Last-Translator: tomo, 2021\n"
2223
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2324
"MIME-Version: 1.0\n"
2425
"Content-Type: text/plain; charset=UTF-8\n"
@@ -111,7 +112,7 @@ msgid ""
111112
"interpreter, the standard library, and various supporting files."
112113
msgstr ""
113114
"これは ``tutorial-env`` ディレクトリがなければ作成して、その中に Python "
114-
"インタプリタ、標準ライブラリ、その他関連するファイルを含むサブディレクトリを作ります。"
115+
"インタプリタ、標準ライブラリ、その他関連するファイルのコピーを含むサブディレクトリを作ります。"
115116

116117
#: ../../tutorial/venv.rst:53
117118
msgid ""

0 commit comments

Comments
 (0)