Skip to content

Commit a33f5fb

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent ef134f0 commit a33f5fb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+6314
-7497
lines changed

c-api/arg.po

Lines changed: 42 additions & 99 deletions
Large diffs are not rendered by default.

c-api/buffer.po

Lines changed: 23 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
# Translators:
77
# Nozomu Kaneko <nozom.kaneko@gmail.com>, 2017
88
# E. Kawashima, 2017
9+
# 秘湯 <xwhhsprings@gmail.com>, 2017
910
# Ikuru K <kanumaiku@gmail.com>, 2017
1011
# Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2017
11-
# 秘湯 <xwhhsprings@gmail.com>, 2017
1212
# Osamu NAKAMURA, 2017
1313
# Inada Naoki <songofacandy@gmail.com>, 2017
1414
# Arihiro TAKASE, 2017
@@ -19,7 +19,7 @@ msgid ""
1919
msgstr ""
2020
"Project-Id-Version: Python 3.8\n"
2121
"Report-Msgid-Bugs-To: \n"
22-
"POT-Creation-Date: 2019-09-12 11:28+0000\n"
22+
"POT-Creation-Date: 2019-10-31 11:48+0000\n"
2323
"PO-Revision-Date: 2017-02-16 17:33+0000\n"
2424
"Last-Translator: tomo, 2019\n"
2525
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -193,22 +193,17 @@ msgstr ":term:`連続 <contiguous>` 配列の場合この値はメモリブロ
193193
#: ../../c-api/buffer.rst:104
194194
msgid ""
195195
"A new reference to the exporting object. The reference is owned by the "
196-
"consumer and automatically decremented and set to *NULL* by "
196+
"consumer and automatically decremented and set to ``NULL`` by "
197197
":c:func:`PyBuffer_Release`. The field is the equivalent of the return value "
198198
"of any standard C-API function."
199199
msgstr ""
200-
"エクスポートされているオブジェクトの新しい参照。参照は消費者によって所有され、:c:func:`PyBuffer_Release` "
201-
"によって自動的にデクリメントされて *NULL* に設定されます。このフィールドは標準的なC-API 関数の戻り値と等価です。"
202200

203201
#: ../../c-api/buffer.rst:109
204202
msgid ""
205203
"As a special case, for *temporary* buffers that are wrapped by "
206204
":c:func:`PyMemoryView_FromBuffer` or :c:func:`PyBuffer_FillInfo` this field "
207-
"is *NULL*. In general, exporting objects MUST NOT use this scheme."
205+
"is ``NULL``. In general, exporting objects MUST NOT use this scheme."
208206
msgstr ""
209-
":c:func:`PyMemoryView_FromBuffer` または :c:func:`PyBuffer_FillInfo` によってラップされた"
210-
" *一時的な* バッファである特別なケースでは、このフィールドは *NULL* "
211-
"です。一般的に、エクスポートオブジェクトはこの方式を使用してはなりません。"
212207

213208
#: ../../c-api/buffer.rst:116
214209
msgid ""
@@ -239,21 +234,17 @@ msgstr "バッファが読み出し専用であるか示します。このフィ
239234
#: ../../c-api/buffer.rst:132
240235
msgid ""
241236
"Item size in bytes of a single element. Same as the value of "
242-
":func:`struct.calcsize` called on non-NULL :c:member:`~Py_buffer.format` "
243-
"values."
237+
":func:`struct.calcsize` called on non-``NULL`` :c:member:`~Py_buffer.format`"
238+
" values."
244239
msgstr ""
245-
"要素一つ分のbyte単位のサイズ。 :func:`struct.calcsize` を非NULLの "
246-
":c:member:`~Py_buffer.format` 値に対して呼び出した結果と同じです。"
247240

248241
#: ../../c-api/buffer.rst:135
249242
msgid ""
250243
"Important exception: If a consumer requests a buffer without the "
251244
":c:macro:`PyBUF_FORMAT` flag, :c:member:`~Py_buffer.format` will be set to "
252-
"*NULL*, but :c:member:`~Py_buffer.itemsize` still has the value for the "
245+
"``NULL``, but :c:member:`~Py_buffer.itemsize` still has the value for the "
253246
"original format."
254247
msgstr ""
255-
"重要な例外: 消費者が :c:macro:`PyBUF_FORMAT` フラグを設定することなくバッファを要求した場合、 :c:member:`~Py_Buffer.format` は *NULL* に設定されます。\n"
256-
"しかし :c:member:`~Py_buffer.itemsize` は元のフォーマットに従った値を保持します。"
257248

258249
#: ../../c-api/buffer.rst:140
259250
msgid ""
@@ -266,23 +257,18 @@ msgstr ""
266257

267258
#: ../../c-api/buffer.rst:144
268259
msgid ""
269-
"If :c:member:`~Py_buffer.shape` is *NULL* as a result of a "
260+
"If :c:member:`~Py_buffer.shape` is ``NULL`` as a result of a "
270261
":c:macro:`PyBUF_SIMPLE` or a :c:macro:`PyBUF_WRITABLE` request, the consumer"
271262
" must disregard :c:member:`~Py_buffer.itemsize` and assume ``itemsize == "
272263
"1``."
273264
msgstr ""
274-
":c:macro:`PyBUF_SIMPLE` または :c:macro:`PyBUF_WRITABLE` で要求した結果、 "
275-
":c:member:`~Py_buffer.shape` が *NULL* であれば、消費者は "
276-
":c:member:`~Py_buffer.itemsize` を無視して ``itemsize == 1`` と見なさなければなりません。"
277265

278266
#: ../../c-api/buffer.rst:150
279267
msgid ""
280268
"A *NUL* terminated string in :mod:`struct` module style syntax describing "
281-
"the contents of a single item. If this is *NULL*, ``\"B\"`` (unsigned bytes)"
282-
" is assumed."
269+
"the contents of a single item. If this is ``NULL``, ``\"B\"`` (unsigned "
270+
"bytes) is assumed."
283271
msgstr ""
284-
"要素一つ分の内容を指定する、 :mod:`struct` モジュールスタイル文法の、 *NUL* 終端文字列。 このポインタの値が *NULL* なら、"
285-
" ``\"B\"`` (符号無しバイト) として扱われます。"
286272

287273
#: ../../c-api/buffer.rst:154
288274
msgid "This field is controlled by the :c:macro:`PyBUF_FORMAT` flag."
@@ -294,11 +280,8 @@ msgid ""
294280
" it is ``0``, :c:member:`~Py_buffer.buf` points to a single item "
295281
"representing a scalar. In this case, :c:member:`~Py_buffer.shape`, "
296282
":c:member:`~Py_buffer.strides` and :c:member:`~Py_buffer.suboffsets` MUST be"
297-
" *NULL*."
283+
" ``NULL``."
298284
msgstr ""
299-
"メモリがN次元配列を表している時の次元数。\n"
300-
"``0`` の場合、 :c:member:`~Py_buffer.buf` はスカラ値を表す1つの要素を指しています。\n"
301-
"この場合、 :c:member:`~Py_buffer.shape`, :c:member:`~Py_buffer.strides`, :c:member:`~Py_buffer.suboffsets` は *NULL* でなければなりません。"
302285

303286
#: ../../c-api/buffer.rst:163
304287
msgid ""
@@ -369,9 +352,8 @@ msgstr ""
369352
#: ../../c-api/buffer.rst:201
370353
msgid ""
371354
"If all suboffsets are negative (i.e. no de-referencing is needed), then this"
372-
" field must be NULL (the default value)."
355+
" field must be ``NULL`` (the default value)."
373356
msgstr ""
374-
"全ての suboffset が負数の場合 (つまり参照解決が不要) な場合、このフィールドは NULL (デフォルト値) でなければなりません。"
375357

376358
#: ../../c-api/buffer.rst:204
377359
msgid ""
@@ -450,11 +432,8 @@ msgstr ""
450432
#: ../../c-api/buffer.rst:250
451433
msgid ""
452434
"Controls the :c:member:`~Py_buffer.format` field. If set, this field MUST be"
453-
" filled in correctly. Otherwise, this field MUST be *NULL*."
435+
" filled in correctly. Otherwise, this field MUST be ``NULL``."
454436
msgstr ""
455-
":c:member:`~Py_buffer.format` "
456-
"フィールドを制御します。もしフラグが設定されていれば、このフィールドを正しく埋めなければなりません。フラグが設定されていなければ、このフィールドを "
457-
"*NULL* に設定しなければなりません。"
458437

459438
#: ../../c-api/buffer.rst:254
460439
msgid ""
@@ -643,19 +622,16 @@ msgid ""
643622
"If ``ndim == 0``, the memory location pointed to by "
644623
":c:member:`~Py_buffer.buf` is interpreted as a scalar of size "
645624
":c:member:`~Py_buffer.itemsize`. In that case, both "
646-
":c:member:`~Py_buffer.shape` and :c:member:`~Py_buffer.strides` are *NULL*."
625+
":c:member:`~Py_buffer.shape` and :c:member:`~Py_buffer.strides` are "
626+
"``NULL``."
647627
msgstr ""
648-
"``ndim == 0`` の場合は、 :c:member:`~Py_buffer.buf` が指すメモリの場所は、サイズが :c:member:`~Py_buffer.itemsize` のスカラ値として解釈されます。\n"
649-
"この場合、 :c:member:`~Py_buffer.shape` と :c:member:`~Py_buffer.strides` の両方とも *NULL* です。"
650628

651629
#: ../../c-api/buffer.rst:354
652630
msgid ""
653-
"If :c:member:`~Py_buffer.strides` is *NULL*, the array is interpreted as a "
654-
"standard n-dimensional C-array. Otherwise, the consumer must access an "
631+
"If :c:member:`~Py_buffer.strides` is ``NULL``, the array is interpreted as a"
632+
" standard n-dimensional C-array. Otherwise, the consumer must access an "
655633
"n-dimensional array as follows:"
656634
msgstr ""
657-
":c:member:`~Py_buffer.strides` が *NULL* の場合は、配列は標準の n 次元 C 配列として解釈されます。\n"
658-
"そうでない場合は、利用者は次のように n 次元配列にアクセスしなければなりません:"
659635

660636
#: ../../c-api/buffer.rst:364
661637
msgid ""
@@ -687,11 +663,9 @@ msgstr ""
687663
#: ../../c-api/buffer.rst:409
688664
msgid ""
689665
"Here is a function that returns a pointer to the element in an N-D array "
690-
"pointed to by an N-dimensional index when there are both non-NULL strides "
691-
"and suboffsets::"
666+
"pointed to by an N-dimensional index when there are both non-``NULL`` "
667+
"strides and suboffsets::"
692668
msgstr ""
693-
"次の例は、 strides も suboffsets も NULL でない場合の、N 次元インデックスによって指されている N "
694-
"次元配列内の要素へのポインタを返す関数です。 ::"
695669

696670
#: ../../c-api/buffer.rst:428
697671
msgid "Buffer-related functions"
@@ -711,11 +685,9 @@ msgstr ""
711685
msgid ""
712686
"Send a request to *exporter* to fill in *view* as specified by *flags*. If "
713687
"the exporter cannot provide a buffer of the exact type, it MUST raise "
714-
":c:data:`PyExc_BufferError`, set :c:member:`view->obj` to *NULL* and return "
715-
"``-1``."
688+
":c:data:`PyExc_BufferError`, set :c:member:`view->obj` to ``NULL`` and "
689+
"return ``-1``."
716690
msgstr ""
717-
"*exporter* に *flags* で指定された方法で *view* を埋めるように要求します。\n"
718-
"もし exporter が指定されたとおりにバッファを提供できない場合、 :c:data:`PyExc_BufferError` を送出し、 :c:member:`view->obj` を *NULL* に設定した上で、 ``-1`` を返さなければなりません。"
719691

720692
#: ../../c-api/buffer.rst:444
721693
msgid ""
@@ -832,16 +804,12 @@ msgstr ""
832804
msgid ""
833805
"On success, set :c:member:`view->obj` to a new reference to *exporter* and "
834806
"return 0. Otherwise, raise :c:data:`PyExc_BufferError`, set "
835-
":c:member:`view->obj` to *NULL* and return ``-1``;"
807+
":c:member:`view->obj` to ``NULL`` and return ``-1``;"
836808
msgstr ""
837-
"成功したときは、 :c:member:`view->obj` に *exporter* への新しい参照を設定し、 0 を返します。\n"
838-
"失敗したときは、 :c:data:`PyExc_BufferError` を送出し、 :c:member:`view->obj` に *NULL* を設定し、 ``-1`` を返します;"
839809

840810
#: ../../c-api/buffer.rst:521
841811
msgid ""
842812
"If this function is used as part of a :ref:`getbufferproc <buffer-structs>`,"
843813
" *exporter* MUST be set to the exporting object and *flags* must be passed "
844-
"unmodified. Otherwise, *exporter* MUST be NULL."
814+
"unmodified. Otherwise, *exporter* MUST be ``NULL``."
845815
msgstr ""
846-
"この関数を :ref:`getbufferproc <buffer-structs>` の一部として使う場合には、 *exporter* はエクスポートするオブジェクトに設定しなければならず、さらに *flags* は変更せずに渡さなければなりません。\n"
847-
"そうでない場合は、 *exporter* は NULL でなければなりません。"

c-api/bytearray.po

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,15 @@
66
# Translators:
77
# shirou - しろう <shirou.faw@gmail.com>, 2017
88
# Arihiro TAKASE, 2017
9-
# Osamu NAKAMURA, 2017
109
#
1110
#, fuzzy
1211
msgid ""
1312
msgstr ""
1413
"Project-Id-Version: Python 3.8\n"
1514
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2019-09-01 14:24+0000\n"
15+
"POT-Creation-Date: 2019-10-31 11:48+0000\n"
1716
"PO-Revision-Date: 2017-02-16 17:33+0000\n"
18-
"Last-Translator: Osamu NAKAMURA, 2017\n"
17+
"Last-Translator: Arihiro TAKASE, 2017\n"
1918
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2019
"MIME-Version: 1.0\n"
2120
"Content-Type: text/plain; charset=UTF-8\n"
@@ -71,26 +70,24 @@ msgstr ""
7170
#: ../../c-api/bytearray.rst:50
7271
msgid ""
7372
"Create a new bytearray object from *string* and its length, *len*. On "
74-
"failure, *NULL* is returned."
73+
"failure, ``NULL`` is returned."
7574
msgstr ""
76-
"*string* とその長さ *len* から新しい bytearray オブジェクトを返します。失敗した場合は *NULL* を返します。"
7775

7876
#: ../../c-api/bytearray.rst:56
7977
msgid ""
8078
"Concat bytearrays *a* and *b* and return a new bytearray with the result."
8179
msgstr "bytearray *a* と *b* を連結した結果を新しい bytearray として返します。"
8280

8381
#: ../../c-api/bytearray.rst:61
84-
msgid "Return the size of *bytearray* after checking for a *NULL* pointer."
85-
msgstr "*NULL* ポインタチェックの後に *bytearray* のサイズを返します。"
82+
msgid "Return the size of *bytearray* after checking for a ``NULL`` pointer."
83+
msgstr ""
8684

8785
#: ../../c-api/bytearray.rst:66
8886
msgid ""
8987
"Return the contents of *bytearray* as a char array after checking for a "
90-
"*NULL* pointer. The returned array always has an extra null byte appended."
88+
"``NULL`` pointer. The returned array always has an extra null byte "
89+
"appended."
9190
msgstr ""
92-
"*NULL* ポインタチェックの後に *bytearray* の内容を char 配列として返します。返される配列には、常に余分な null "
93-
"バイトが追加されます。"
9491

9592
#: ../../c-api/bytearray.rst:73
9693
msgid "Resize the internal buffer of *bytearray* to *len*."

c-api/bytes.po

Lines changed: 14 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7+
# Nozomu Kaneko <nozom.kaneko@gmail.com>, 2017
78
# 秘湯 <xwhhsprings@gmail.com>, 2017
89
# Osamu NAKAMURA, 2017
9-
# Nozomu Kaneko <nozom.kaneko@gmail.com>, 2017
1010
# Arihiro TAKASE, 2017
1111
# tomo, 2019
1212
#
@@ -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-09-01 14:24+0000\n"
18+
"POT-Creation-Date: 2019-10-31 11:48+0000\n"
1919
"PO-Revision-Date: 2017-02-16 17:33+0000\n"
2020
"Last-Translator: tomo, 2019\n"
2121
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -64,20 +64,16 @@ msgstr "オブジェクト *o* がバイトオブジェクトであり、かつb
6464
#: ../../c-api/bytes.rst:39
6565
msgid ""
6666
"Return a new bytes object with a copy of the string *v* as value on success,"
67-
" and *NULL* on failure. The parameter *v* must not be *NULL*; it will not "
68-
"be checked."
67+
" and ``NULL`` on failure. The parameter *v* must not be ``NULL``; it will "
68+
"not be checked."
6969
msgstr ""
70-
"成功時に、文字列 *v* のコピーを値とする新しいバイトオブジェクトを返し、失敗時に *NULL* を返します引数 *v* は *NULL* "
71-
"であってはなりません; そのチェックは行われません。"
7270

7371
#: ../../c-api/bytes.rst:46
7472
msgid ""
7573
"Return a new bytes object with a copy of the string *v* as value and length "
76-
"*len* on success, and *NULL* on failure. If *v* is *NULL*, the contents of "
77-
"the bytes object are uninitialized."
74+
"*len* on success, and ``NULL`` on failure. If *v* is ``NULL``, the contents"
75+
" of the bytes object are uninitialized."
7876
msgstr ""
79-
"成功時に、文字列 *v* のコピーを値とする長さ *len* の新しいバイトオブジェクトを返し、失敗時に *NULL* を返します。引数 *v* が "
80-
"*NULL* の場合、バイトオブジェクトの中身は初期化されていません。"
8177

8278
#: ../../c-api/bytes.rst:53
8379
msgid ""
@@ -282,14 +278,8 @@ msgid ""
282278
"bytes. The data must not be modified in any way, unless the object was just"
283279
" created using ``PyBytes_FromStringAndSize(NULL, size)``. It must not be "
284280
"deallocated. If *o* is not a bytes object at all, "
285-
":c:func:`PyBytes_AsString` returns *NULL* and raises :exc:`TypeError`."
281+
":c:func:`PyBytes_AsString` returns ``NULL`` and raises :exc:`TypeError`."
286282
msgstr ""
287-
"*o* の中身へのポインタを返します。ポインタは *o* のコピーではなく、``len(o) + 1`` からなる内部バッファを参照します。 他に "
288-
"null のバイトがあるかどうかにかかわらず、バッファの最後のバイトは必ず null "
289-
"になります。``PyBytes_FromStringAndSize(NULL, size)`` "
290-
"で生成された場合を除いて、データを修正してはなりません。またポインタを解放(deallocated)してはなりません。もし、 *o* が bytes "
291-
"オブジェクトでなければ、 :c:func:`PyBytes_AsString` は *NULL* を返し :exc:`TypeError` "
292-
"を送出します。"
293283

294284
#: ../../c-api/bytes.rst:154
295285
msgid "Macro form of :c:func:`PyBytes_AsString` but without error checking."
@@ -303,11 +293,10 @@ msgstr "*obj* のnull 終端された中身を、出力用の変数 *buffer* と
303293

304294
#: ../../c-api/bytes.rst:162
305295
msgid ""
306-
"If *length* is *NULL*, the bytes object may not contain embedded null bytes;"
307-
" if it does, the function returns ``-1`` and a :exc:`ValueError` is raised."
296+
"If *length* is ``NULL``, the bytes object may not contain embedded null "
297+
"bytes; if it does, the function returns ``-1`` and a :exc:`ValueError` is "
298+
"raised."
308299
msgstr ""
309-
"*length* の値が *NULL* の場合、バイトオブジェクトが null バイトを含まない可能性があります; その場合、関数は ``-1`` "
310-
"を返し、 :exc:`ValueError` を送出します。"
311300

312301
#: ../../c-api/bytes.rst:166
313302
msgid ""
@@ -335,11 +324,9 @@ msgid ""
335324
" appended to *bytes*; the caller will own the new reference. The reference "
336325
"to the old value of *bytes* will be stolen. If the new object cannot be "
337326
"created, the old reference to *bytes* will still be discarded and the value "
338-
"of *\\*bytes* will be set to *NULL*; the appropriate exception will be set."
327+
"of *\\*bytes* will be set to ``NULL``; the appropriate exception will be "
328+
"set."
339329
msgstr ""
340-
"*newpart* の内容を *bytes* の後ろに連結した新しいバイトオブジェクトを *\\*bytes* に生成します; 呼び出し側は新しい参照を所有します。\n"
341-
"*bytes* の古い値の参照は盗まれます。\n"
342-
"もし新しいオブジェクトが生成できない場合、古い *bytes* の参照は放棄され、 *\\*bytes* の値は *NULL* に設定されます; 適切な例外が設定されます。"
343330

344331
#: ../../c-api/bytes.rst:189
345332
msgid ""
@@ -360,12 +347,6 @@ msgid ""
360347
"and the new size desired. On success, *\\*bytes* holds the resized bytes "
361348
"object and ``0`` is returned; the address in *\\*bytes* may differ from its "
362349
"input value. If the reallocation fails, the original bytes object at "
363-
"*\\*bytes* is deallocated, *\\*bytes* is set to *NULL*, :exc:`MemoryError` "
364-
"is set, and ``-1`` is returned."
350+
"*\\*bytes* is deallocated, *\\*bytes* is set to ``NULL``, :exc:`MemoryError`"
351+
" is set, and ``-1`` is returned."
365352
msgstr ""
366-
"本来 \"変更不可能 (immutable)\" なバイトオブジェクトをリサイズする方法です。\n"
367-
"作成されたばかりのバイトオブジェクトにのみこれをしようしてください; 他のコードですでに使用されている可能性のあるバイトオブジェクトに使用してはいけません。\n"
368-
"入力されたバイトオブジェクトの参照カウントが 1 でない場合、この関数はエラーになります。\n"
369-
"左辺値として存在する (つまり書き込み可能な) バイトオブジェクトのアドレスを受け取り、新しいサイズを要求します。\n"
370-
"成功時には、*\\*bytes* はリサイズされたバイトオブジェクトを保持し、``0`` が返されます; *\\*bytes* のアドレスは入力された際のアドレスと異なるかもしれません。\n"
371-
"再割り当て (reallocation) が失敗した場合、 *\\*bytes* が元々指してしたバイトオブジェクトを解放し、*\\*bytes* を *NULL* に設定し、 :exc:`MemoryError` を設定し、そして ``-1`` が返されます。"

0 commit comments

Comments
 (0)