Skip to content

Commit 4b991a0

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 64582c4 commit 4b991a0

File tree

6 files changed

+3787
-3772
lines changed

6 files changed

+3787
-3772
lines changed

c-api/gcsupport.po

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.7\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2018-06-30 05:56+0900\n"
16+
"POT-Creation-Date: 2018-11-14 09:45+0900\n"
1717
"PO-Revision-Date: 2017-02-16 17:35+0000\n"
1818
"Last-Translator: tomo🐧, 2018\n"
1919
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -127,32 +127,36 @@ msgid ""
127127
"extension modules."
128128
msgstr ":c:func:`PyObject_GC_Track` のマクロ版です。拡張モジュールに使ってはなりません。"
129129

130-
#: ../../c-api/gcsupport.rst:69
130+
#: ../../c-api/gcsupport.rst:69 ../../c-api/gcsupport.rst:101
131+
msgid "This macro is removed from Python 3.8."
132+
msgstr ""
133+
134+
#: ../../c-api/gcsupport.rst:72
131135
msgid ""
132136
"Similarly, the deallocator for the object must conform to a similar pair of "
133137
"rules:"
134138
msgstr "同様に、オブジェクトのメモリ解放関数も以下の二つの規則に適合しなければなりません:"
135139

136-
#: ../../c-api/gcsupport.rst:72
140+
#: ../../c-api/gcsupport.rst:75
137141
msgid ""
138142
"Before fields which refer to other containers are invalidated, "
139143
":c:func:`PyObject_GC_UnTrack` must be called."
140144
msgstr ""
141145
"他のコンテナを参照しているフィールドを無効化する前に、 :c:func:`PyObject_GC_UnTrack` を呼び出さなければなりません。"
142146

143-
#: ../../c-api/gcsupport.rst:75
147+
#: ../../c-api/gcsupport.rst:78
144148
msgid ""
145149
"The object's memory must be deallocated using :c:func:`PyObject_GC_Del`."
146150
msgstr "オブジェクトのメモリは :c:func:`PyObject_GC_Del` で解放しなければなりません。"
147151

148-
#: ../../c-api/gcsupport.rst:80
152+
#: ../../c-api/gcsupport.rst:83
149153
msgid ""
150154
"Releases memory allocated to an object using :c:func:`PyObject_GC_New` or "
151155
":c:func:`PyObject_GC_NewVar`."
152156
msgstr ""
153157
":c:func:`PyObject_GC_New` や :c:func:`PyObject_GC_NewVar` を使って確保されたメモリを解放します。"
154158

155-
#: ../../c-api/gcsupport.rst:86
159+
#: ../../c-api/gcsupport.rst:89
156160
msgid ""
157161
"Remove the object *op* from the set of container objects tracked by the "
158162
"collector. Note that :c:func:`PyObject_GC_Track` can be called again on "
@@ -166,19 +170,19 @@ msgstr ""
166170
":c:member:`~PyTypeObject.tp_traverse` ハンドラの対象となるフィールドが正しくない状態になる前に、デアロケータ "
167171
"(:c:member:`~PyTypeObject.tp_dealloc` ハンドラ) はオブジェクトに対して、この関数を呼び出すべきです。"
168172

169-
#: ../../c-api/gcsupport.rst:95
173+
#: ../../c-api/gcsupport.rst:98
170174
msgid ""
171175
"A macro version of :c:func:`PyObject_GC_UnTrack`. It should not be used for"
172176
" extension modules."
173177
msgstr ":c:func:`PyObject_GC_UnTrack` のマクロ版です。拡張モジュールに使ってはなりません。"
174178

175-
#: ../../c-api/gcsupport.rst:98
179+
#: ../../c-api/gcsupport.rst:104
176180
msgid ""
177181
"The :c:member:`~PyTypeObject.tp_traverse` handler accepts a function "
178182
"parameter of this type:"
179183
msgstr ":c:member:`~PyTypeObject.tp_traverse` ハンドラはこの型の関数パラメータを受け取ります:"
180184

181-
#: ../../c-api/gcsupport.rst:103
185+
#: ../../c-api/gcsupport.rst:109
182186
msgid ""
183187
"Type of the visitor function passed to the "
184188
":c:member:`~PyTypeObject.tp_traverse` handler. The function should be called"
@@ -193,13 +197,13 @@ msgstr ""
193197
"のコアはいくつかのビジター関数を使って、ゴミとなった循環参照を検出する仕組みを実装します; "
194198
"ユーザが自身のためにビジター関数を書く必要が出てくることはないでしょう。"
195199

196-
#: ../../c-api/gcsupport.rst:110
200+
#: ../../c-api/gcsupport.rst:116
197201
msgid ""
198202
"The :c:member:`~PyTypeObject.tp_traverse` handler must have the following "
199203
"type:"
200204
msgstr ":c:member:`~PyTypeObject.tp_traverse` ハンドラは次の型を持っていなければなりません:"
201205

202-
#: ../../c-api/gcsupport.rst:115
206+
#: ../../c-api/gcsupport.rst:121
203207
msgid ""
204208
"Traversal function for a container object. Implementations must call the "
205209
"*visit* function for each object directly contained by *self*, with the "
@@ -214,7 +218,7 @@ msgstr ""
214218
"オブジェクトを引数に渡して呼び出してはなりません。*visit* "
215219
"が非ゼロの値を返す場合、エラーが発生し、戻り値をそのまま返すようにしなければなりません。"
216220

217-
#: ../../c-api/gcsupport.rst:122
221+
#: ../../c-api/gcsupport.rst:128
218222
msgid ""
219223
"To simplify writing :c:member:`~PyTypeObject.tp_traverse` handlers, a "
220224
":c:func:`Py_VISIT` macro is provided. In order to use this macro, the "
@@ -225,7 +229,7 @@ msgstr ""
225229
"マクロが提供されています。このマクロを使うためには、 :c:member:`~PyTypeObject.tp_traverse` "
226230
"の実装関数の引数は、一文字も違わず *visit* と *arg* でなければなりません:"
227231

228-
#: ../../c-api/gcsupport.rst:129
232+
#: ../../c-api/gcsupport.rst:135
229233
msgid ""
230234
"If *o* is not *NULL*, call the *visit* callback, with arguments *o* and "
231235
"*arg*. If *visit* returns a non-zero value, then return it. Using this "
@@ -235,15 +239,15 @@ msgstr ""
235239
"がゼロでない値を返した場合、その値を返します。このマクロを使うと、 :c:member:`~PyTypeObject.tp_traverse` "
236240
"ハンドラは次のようになります::"
237241

238-
#: ../../c-api/gcsupport.rst:142
242+
#: ../../c-api/gcsupport.rst:148
239243
msgid ""
240244
"The :c:member:`~PyTypeObject.tp_clear` handler must be of the "
241245
":c:type:`inquiry` type, or *NULL* if the object is immutable."
242246
msgstr ""
243247
":c:member:`~PyTypeObject.tp_clear` ハンドラは :c:type:`inquiry` 型であるか、オブジェクトが不変 "
244248
"(immutable) な場合は *NULL* でなければなりません。"
245249

246-
#: ../../c-api/gcsupport.rst:148
250+
#: ../../c-api/gcsupport.rst:154
247251
msgid ""
248252
"Drop references that may have created reference cycles. Immutable objects "
249253
"do not have to define this method since they can never directly create "

glossary.po

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# Naoki INADA <songofacandy@gmail.com>, 2017
1313
# E. Kawashima, 2017
1414
# Shun Sakurai, 2017
15-
# tomo🐧, 2017
15+
# tomo🐧, 2018
1616
#
1717
#, fuzzy
1818
msgid ""
@@ -21,7 +21,7 @@ msgstr ""
2121
"Report-Msgid-Bugs-To: \n"
2222
"POT-Creation-Date: 2018-11-13 09:43+0900\n"
2323
"PO-Revision-Date: 2017-02-16 17:32+0000\n"
24-
"Last-Translator: tomo🐧, 2017\n"
24+
"Last-Translator: tomo🐧, 2018\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"
@@ -1183,6 +1183,8 @@ msgid ""
11831183
"with an :meth:`__iter__` method or with a :meth:`__getitem__` method that "
11841184
"implements :term:`Sequence` semantics."
11851185
msgstr ""
1186+
"(反復可能オブジェクト) 要素を一度に 1 つずつ返せるオブジェクトです。\n"
1187+
"反復可能オブジェクトの例には、(:class:`list`, :class:`str`, :class:`tuple` といった) 全てのシーケンス型や、 :class:`dict` や :term:`ファイルオブジェクト <file object>` といった幾つかの非シーケンス型、 あるいは :term:`Sequence` 意味論を実装した :meth:`__iter__` メソッドか :meth:`__getitem__` メソッドを持つ任意のクラスのインスタンスが含まれます。"
11861188

11871189
#: ../../glossary.rst:573
11881190
msgid ""
@@ -1196,6 +1198,12 @@ msgid ""
11961198
"unnamed variable to hold the iterator for the duration of the loop. See "
11971199
"also :term:`iterator`, :term:`sequence`, and :term:`generator`."
11981200
msgstr ""
1201+
"反復可能オブジェクトは :keyword:`for` ループ内やその他多くのシーケンス (訳注: ここでのシーケンスとは、シーケンス型ではなくただの列という意味)が必要となる状況 (:func:`zip`, :func:`map`, ...) で利用できます。\n"
1202+
"反復可能オブジェクトを組み込み関数 :func:`iter` の引数として渡すと、 オブジェクトに対するイテレータを返します。\n"
1203+
"このイテレータは一連の値を引き渡す際に便利です。\n"
1204+
"通常は反復可能オブジェクトを使う際には、 :func:`iter` を呼んだりイテレータオブジェクトを自分で操作する必要はありません。\n"
1205+
"``for`` 文ではこの操作を自動的に行い、一時的な無名の変数を作成してループを回している間イテレータを保持します。\n"
1206+
"イテレータ (:term:`iterator`), シーケンス (:term:`sequence`), ジェネレータ(:term:`generator`) も参照してください。 "
11991207

12001208
#: ../../glossary.rst:583
12011209
msgid "iterator"

installing/index.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ msgid ""
2020
msgstr ""
2121
"Project-Id-Version: Python 3.7\n"
2222
"Report-Msgid-Bugs-To: \n"
23-
"POT-Creation-Date: 2018-06-30 05:56+0900\n"
23+
"POT-Creation-Date: 2018-11-14 09:45+0900\n"
2424
"PO-Revision-Date: 2017-02-16 17:46+0000\n"
2525
"Last-Translator: takey <taketakeyyy@gmail.com>, 2018\n"
2626
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -135,7 +135,7 @@ msgstr ""
135135

136136
#: ../../installing/index.rst:50
137137
msgid ""
138-
"the `Python Packaging Authority <https://www.pypa.io/>`__ are the group of "
138+
"the `Python Packaging Authority <https://www.pypa.io/>`__ is the group of "
139139
"developers and documentation authors responsible for the maintenance and "
140140
"evolution of the standard packaging tools and the associated metadata and "
141141
"file format standards. They maintain a variety of tools, documentation, and "

library/os.po

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ msgid ""
1818
msgstr ""
1919
"Project-Id-Version: Python 3.7\n"
2020
"Report-Msgid-Bugs-To: \n"
21-
"POT-Creation-Date: 2018-11-08 09:41+0900\n"
21+
"POT-Creation-Date: 2018-11-14 09:45+0900\n"
2222
"PO-Revision-Date: 2017-02-16 23:20+0000\n"
2323
"Last-Translator: Osamu NAKAMURA, 2017\n"
2424
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -3412,14 +3412,9 @@ msgid ""
34123412
"morph to the target dynamically. If the target is present, the type of the "
34133413
"symlink will be created to match. Otherwise, the symlink will be created as "
34143414
"a directory if *target_is_directory* is ``True`` or a file symlink (the "
3415-
"default) otherwise. On non-Window platforms, *target_is_directory* is "
3415+
"default) otherwise. On non-Windows platforms, *target_is_directory* is "
34163416
"ignored."
34173417
msgstr ""
3418-
"Windows "
3419-
"では、シンボリックリンクはファイルかディレクトリのどちらかを表しますが、ターゲットに合わせて動的に変化することはありません。ターゲットが存在する場合、シンボリックリンクの種類は対象に合わせて作成されます。ターゲットが存在せず"
3420-
" *target_is_directory* に ``True`` "
3421-
"が設定された場合、シンボリックリンクはディレクトリのリンクとして作成され、``False`` に設定された場合 (デフォルト) "
3422-
"はファイルのリンクになります。Windows 以外のプラットフォームでは *target_is_directory* は無視されます。"
34233418

34243419
#: ../../library/os.rst:2700
34253420
msgid ""

whatsnew/3.7.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.7\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2018-10-27 09:37+0900\n"
15+
"POT-Creation-Date: 2018-11-14 09:45+0900\n"
1616
"PO-Revision-Date: 2018-06-29 21:15+0000\n"
1717
"Last-Translator: takey <taketakeyyy@gmail.com>, 2018\n"
1818
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -668,7 +668,7 @@ msgid ""
668668
" it was generated. While effective, this invalidation method has its "
669669
"drawbacks. When filesystem timestamps are too coarse, Python can miss "
670670
"source updates, leading to user confusion. Additionally, having a timestamp "
671-
"in the cache file is problematic for `build reproduciblity <https"
671+
"in the cache file is problematic for `build reproducibility <https"
672672
"://reproducible-builds.org/>`_ and content-based build systems."
673673
msgstr ""
674674

0 commit comments

Comments
 (0)