Skip to content

Commit 7efdbd5

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 8bf8f1a commit 7efdbd5

File tree

14 files changed

+14573
-14536
lines changed

14 files changed

+14573
-14536
lines changed

c-api/bytearray.po

Lines changed: 25 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-03-17 14:51+0000\n"
14+
"POT-Creation-Date: 2026-03-27 14:44+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -73,25 +73,31 @@ msgstr ""
7373
":ref:`buffer protocol <bufferobjects>` を実装した任意のオブジェクト *o* か"
7474
"ら、新しいbytearrayオブジェクトを作成し、返します。"
7575

76-
#: ../../c-api/bytearray.rst:45 ../../c-api/bytearray.rst:52
77-
#: ../../c-api/bytearray.rst:59
76+
#: ../../c-api/bytearray.rst:45 ../../c-api/bytearray.rst:56
77+
#: ../../c-api/bytearray.rst:63
7878
msgid "On failure, return ``NULL`` with an exception set."
7979
msgstr ""
8080

81-
#: ../../c-api/bytearray.rst:50
81+
#: ../../c-api/bytearray.rst:48 ../../c-api/bytearray.rst:66
82+
msgid ""
83+
"If the object implements the buffer protocol, then the buffer must not be "
84+
"mutated while the bytearray object is being created."
85+
msgstr ""
86+
87+
#: ../../c-api/bytearray.rst:54
8288
msgid "Create a new bytearray object from *string* and its length, *len*."
8389
msgstr ""
8490

85-
#: ../../c-api/bytearray.rst:57
91+
#: ../../c-api/bytearray.rst:61
8692
msgid ""
8793
"Concat bytearrays *a* and *b* and return a new bytearray with the result."
8894
msgstr "bytearray *a* と *b* を連結した結果を新しい bytearray として返します。"
8995

90-
#: ../../c-api/bytearray.rst:64
96+
#: ../../c-api/bytearray.rst:72
9197
msgid "Return the size of *bytearray* after checking for a ``NULL`` pointer."
9298
msgstr "``NULL`` ポインタチェックの後に *bytearray* のサイズを返します。"
9399

94-
#: ../../c-api/bytearray.rst:69
100+
#: ../../c-api/bytearray.rst:77
95101
msgid ""
96102
"Return the contents of *bytearray* as a char array after checking for a "
97103
"``NULL`` pointer. The returned array always has an extra null byte appended."
@@ -100,33 +106,39 @@ msgstr ""
100106
"す。\n"
101107
"返される配列には、常に余分な null バイトが追加されます。"
102108

103-
#: ../../c-api/bytearray.rst:76
109+
#: ../../c-api/bytearray.rst:82 ../../c-api/bytearray.rst:104
110+
msgid ""
111+
"It is not thread-safe to mutate the bytearray object while using the "
112+
"returned char array."
113+
msgstr ""
114+
115+
#: ../../c-api/bytearray.rst:87
104116
msgid ""
105117
"Resize the internal buffer of *bytearray* to *len*. Failure is a ``-1`` "
106118
"return with an exception set."
107119
msgstr ""
108120

109-
#: ../../c-api/bytearray.rst:79
121+
#: ../../c-api/bytearray.rst:90
110122
msgid ""
111123
"A negative *len* will now result in an exception being set and -1 returned."
112124
msgstr ""
113125

114-
#: ../../c-api/bytearray.rst:84
126+
#: ../../c-api/bytearray.rst:95
115127
msgid "Macros"
116128
msgstr "マクロ"
117129

118-
#: ../../c-api/bytearray.rst:86
130+
#: ../../c-api/bytearray.rst:97
119131
msgid "These macros trade safety for speed and they don't check pointers."
120132
msgstr ""
121133
"以下のマクロは、ポインタのチェックをしないことにより安全性を犠牲にしてスピー"
122134
"ドを優先しています。"
123135

124-
#: ../../c-api/bytearray.rst:90
136+
#: ../../c-api/bytearray.rst:101
125137
msgid "Similar to :c:func:`PyByteArray_AsString`, but without error checking."
126138
msgstr ""
127139
":c:func:`PyByteArray_AsString` に似ていますが、エラーチェックを行いません。"
128140

129-
#: ../../c-api/bytearray.rst:95
141+
#: ../../c-api/bytearray.rst:109
130142
msgid "Similar to :c:func:`PyByteArray_Size`, but without error checking."
131143
msgstr ""
132144
":c:func:`PyByteArray_Size` に似ていますが、エラーチェックを行いません。"

c-api/bytes.po

Lines changed: 42 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-03-21 14:21+0000\n"
14+
"POT-Creation-Date: 2026-03-27 14:44+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -279,15 +279,21 @@ msgid ""
279279
"protocol."
280280
msgstr "バッファプロトコルを実装するオブジェクト *o* のバイト表現を返します。"
281281

282-
#: ../../c-api/bytes.rst:129
282+
#: ../../c-api/bytes.rst:127
283+
msgid ""
284+
"If the object implements the buffer protocol, then the buffer must not be "
285+
"mutated while the bytes object is being created."
286+
msgstr ""
287+
288+
#: ../../c-api/bytes.rst:133
283289
msgid "Return the length of the bytes in bytes object *o*."
284290
msgstr "バイトオブジェクト *o* のバイト単位の長さを返します。"
285291

286-
#: ../../c-api/bytes.rst:134
292+
#: ../../c-api/bytes.rst:138
287293
msgid "Similar to :c:func:`PyBytes_Size`, but without error checking."
288294
msgstr ":c:func:`PyBytes_Size` に似ていますが、エラーチェックを行いません。"
289295

290-
#: ../../c-api/bytes.rst:139
296+
#: ../../c-api/bytes.rst:143
291297
msgid ""
292298
"Return a pointer to the contents of *o*. The pointer refers to the internal "
293299
"buffer of *o*, which consists of ``len(o) + 1`` bytes. The last byte in the "
@@ -307,18 +313,18 @@ msgstr ""
307313
"もし、 *o* が bytes オブジェクトでなければ、 :c:func:`PyBytes_AsString` は "
308314
"``NULL`` を返し :exc:`TypeError` を送出します。"
309315

310-
#: ../../c-api/bytes.rst:151
316+
#: ../../c-api/bytes.rst:155
311317
msgid "Similar to :c:func:`PyBytes_AsString`, but without error checking."
312318
msgstr ""
313319
":c:func:`PyBytes_AsString` に似ていますが、エラーチェックを行いません。"
314320

315-
#: ../../c-api/bytes.rst:156
321+
#: ../../c-api/bytes.rst:160
316322
msgid ""
317323
"Return the null-terminated contents of the object *obj* through the output "
318324
"variables *buffer* and *length*. Returns ``0`` on success."
319325
msgstr ""
320326

321-
#: ../../c-api/bytes.rst:160
327+
#: ../../c-api/bytes.rst:164
322328
msgid ""
323329
"If *length* is ``NULL``, the bytes object may not contain embedded null "
324330
"bytes; if it does, the function returns ``-1`` and a :exc:`ValueError` is "
@@ -328,7 +334,7 @@ msgstr ""
328334
"可能性があります。その場合、関数は ``-1`` を返し、 :exc:`ValueError` を送出し"
329335
"ます。"
330336

331-
#: ../../c-api/bytes.rst:164
337+
#: ../../c-api/bytes.rst:168
332338
msgid ""
333339
"The buffer refers to an internal buffer of *obj*, which includes an "
334340
"additional null byte at the end (not counted in *length*). The data must "
@@ -345,15 +351,15 @@ msgstr ""
345351
"*obj* が bytes オブジェクトでなかった場合は、 :c:func:"
346352
"`PyBytes_AsStringAndSize` は ``-1`` を返し :exc:`TypeError` を送出します。"
347353

348-
#: ../../c-api/bytes.rst:171
354+
#: ../../c-api/bytes.rst:175
349355
msgid ""
350356
"Previously, :exc:`TypeError` was raised when embedded null bytes were "
351357
"encountered in the bytes object."
352358
msgstr ""
353359
"以前は bytes オブジェクトにヌルバイトが埋め込まれていたときに :exc:"
354360
"`TypeError` を送出していました。"
355361

356-
#: ../../c-api/bytes.rst:178
362+
#: ../../c-api/bytes.rst:182
357363
msgid ""
358364
"Create a new bytes object in *\\*bytes* containing the contents of *newpart* "
359365
"appended to *bytes*; the caller will own the new reference. The reference "
@@ -367,37 +373,49 @@ msgstr ""
367373
"もし新しいオブジェクトが生成できない場合、古い *bytes* の参照は放棄され、 "
368374
"*\\*bytes* の値は ``NULL`` に設定されます; 適切な例外が設定されます。"
369375

370-
#: ../../c-api/bytes.rst:187
376+
#: ../../c-api/bytes.rst:189 ../../c-api/bytes.rst:199
377+
msgid ""
378+
"If *newpart* implements the buffer protocol, then the buffer must not be "
379+
"mutated while the new bytes object is being created."
380+
msgstr ""
381+
382+
#: ../../c-api/bytes.rst:194
371383
msgid ""
372384
"Create a new bytes object in *\\*bytes* containing the contents of *newpart* "
373385
"appended to *bytes*. This version releases the :term:`strong reference` to "
374386
"*newpart* (i.e. decrements its reference count)."
375387
msgstr ""
376388

377-
#: ../../c-api/bytes.rst:194
389+
#: ../../c-api/bytes.rst:205
378390
msgid "Similar to ``sep.join(iterable)`` in Python."
379391
msgstr ""
380392

381-
#: ../../c-api/bytes.rst:196
393+
#: ../../c-api/bytes.rst:207
382394
msgid ""
383395
"*sep* must be Python :class:`bytes` object. (Note that :c:func:"
384396
"`PyUnicode_Join` accepts ``NULL`` separator and treats it as a space, "
385397
"whereas :c:func:`PyBytes_Join` doesn't accept ``NULL`` separator.)"
386398
msgstr ""
387399

388-
#: ../../c-api/bytes.rst:201
400+
#: ../../c-api/bytes.rst:212
389401
msgid ""
390402
"*iterable* must be an iterable object yielding objects that implement the :"
391403
"ref:`buffer protocol <bufferobjects>`."
392404
msgstr ""
393405

394-
#: ../../c-api/bytes.rst:204
406+
#: ../../c-api/bytes.rst:215
395407
msgid ""
396408
"On success, return a new :class:`bytes` object. On error, set an exception "
397409
"and return ``NULL``."
398410
msgstr ""
399411

400-
#: ../../c-api/bytes.rst:212
412+
#: ../../c-api/bytes.rst:221
413+
msgid ""
414+
"If *iterable* objects implement the buffer protocol, then the buffers must "
415+
"not be mutated while the new bytes object is being created."
416+
msgstr ""
417+
418+
#: ../../c-api/bytes.rst:226
401419
msgid ""
402420
"Resize a bytes object. *newsize* will be the new length of the bytes object. "
403421
"You can think of it as creating a new bytes object and destroying the old "
@@ -409,19 +427,19 @@ msgid ""
409427
"``NULL``, :exc:`MemoryError` is set, and ``-1`` is returned."
410428
msgstr ""
411429

412-
#: ../../c-api/bytes.rst:226
430+
#: ../../c-api/bytes.rst:240
413431
msgid ""
414432
"Get the string representation of *bytes*. This function is currently used to "
415433
"implement :meth:`!bytes.__repr__` in Python."
416434
msgstr ""
417435

418-
#: ../../c-api/bytes.rst:229
436+
#: ../../c-api/bytes.rst:243
419437
msgid ""
420438
"This function does not do type checking; it is undefined behavior to pass "
421439
"*bytes* as a non-bytes object or ``NULL``."
422440
msgstr ""
423441

424-
#: ../../c-api/bytes.rst:232
442+
#: ../../c-api/bytes.rst:246
425443
msgid ""
426444
"If *smartquotes* is true, the representation will use a double-quoted string "
427445
"instead of single-quoted string when single-quotes are present in *bytes*. "
@@ -430,33 +448,33 @@ msgid ""
430448
"is false."
431449
msgstr ""
432450

433-
#: ../../c-api/bytes.rst:238
451+
#: ../../c-api/bytes.rst:252
434452
msgid ""
435453
"On success, this function returns a :term:`strong reference` to a :class:"
436454
"`str` object containing the representation. On failure, this returns "
437455
"``NULL`` with an exception set."
438456
msgstr ""
439457

440-
#: ../../c-api/bytes.rst:245
458+
#: ../../c-api/bytes.rst:259
441459
msgid ""
442460
"Unescape a backslash-escaped string *s*. *s* must not be ``NULL``. *len* "
443461
"must be the size of *s*."
444462
msgstr ""
445463

446-
#: ../../c-api/bytes.rst:248
464+
#: ../../c-api/bytes.rst:262
447465
msgid ""
448466
"*errors* must be one of ``\"strict\"``, ``\"replace\"``, or ``\"ignore\"``. "
449467
"If *errors* is ``NULL``, then ``\"strict\"`` is used by default."
450468
msgstr ""
451469

452-
#: ../../c-api/bytes.rst:251
470+
#: ../../c-api/bytes.rst:265
453471
msgid ""
454472
"On success, this function returns a :term:`strong reference` to a Python :"
455473
"class:`bytes` object containing the unescaped string. On failure, this "
456474
"function returns ``NULL`` with an exception set."
457475
msgstr ""
458476

459-
#: ../../c-api/bytes.rst:255
477+
#: ../../c-api/bytes.rst:269
460478
msgid "*unicode* and *recode_encoding* are now unused."
461479
msgstr ""
462480

howto/annotations.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.14\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2026-03-07 14:18+0000\n"
15+
"POT-Creation-Date: 2026-03-27 14:44+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: digdugdog, 2026\n"
1818
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

howto/logging.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-03-07 14:18+0000\n"
14+
"POT-Creation-Date: 2026-03-27 14:44+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

library/array.po

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-03-23 14:50+0000\n"
14+
"POT-Creation-Date: 2026-03-27 14:44+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -300,8 +300,8 @@ msgid "The length in bytes of one array item in the internal representation."
300300
msgstr "アレイの要素 1 つの内部表現に使われるバイト長です。"
301301

302302
#: ../../library/array.rst:124
303-
msgid "Append a new item with value *x* to the end of the array."
304-
msgstr "値 *x* の新たな要素をアレイの末尾に追加します。"
303+
msgid "Append a new item with the specified value to the end of the array."
304+
msgstr ""
305305

306306
#: ../../library/array.rst:129
307307
msgid ""
@@ -350,8 +350,8 @@ msgstr ""
350350
"ときに役に立ちます。"
351351

352352
#: ../../library/array.rst:156
353-
msgid "Return the number of occurrences of *x* in the array."
354-
msgstr "シーケンス中の *x* の出現回数を返します。"
353+
msgid "Return the number of occurrences of *value* in the array."
354+
msgstr ""
355355

356356
#: ../../library/array.rst:161
357357
msgid ""
@@ -410,9 +410,9 @@ msgstr ""
410410
#: ../../library/array.rst:201
411411
msgid ""
412412
"Return the smallest *i* such that *i* is the index of the first occurrence "
413-
"of *x* in the array. The optional arguments *start* and *stop* can be "
414-
"specified to search for *x* within a subsection of the array. Raise :exc:"
415-
"`ValueError` if *x* is not found."
413+
"of *value* in the array. The optional arguments *start* and *stop* can be "
414+
"specified to search for *value* within a subsection of the array. Raise :"
415+
"exc:`ValueError` if *value* is not found."
416416
msgstr ""
417417

418418
#: ../../library/array.rst:206
@@ -421,11 +421,9 @@ msgstr ""
421421

422422
#: ../../library/array.rst:212
423423
msgid ""
424-
"Insert a new item with value *x* in the array before position *i*. Negative "
424+
"Insert a new item *value* in the array before position *index*. Negative "
425425
"values are treated as being relative to the end of the array."
426426
msgstr ""
427-
"アレイ中の位置 *i* の前に値 *x* をもつ新しい要素を挿入します。 *i* の値が負の"
428-
"場合、アレイの末尾からの相対位置として扱います。"
429427

430428
#: ../../library/array.rst:218
431429
msgid ""
@@ -438,8 +436,8 @@ msgstr ""
438436
"す。"
439437

440438
#: ../../library/array.rst:225
441-
msgid "Remove the first occurrence of *x* from the array."
442-
msgstr "アレイ中の *x* のうち、最初に現れたものを取り除きます。"
439+
msgid "Remove the first occurrence of *value* from the array."
440+
msgstr ""
443441

444442
#: ../../library/array.rst:230
445443
msgid "Remove all elements from the array."

0 commit comments

Comments
 (0)