Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 02c7adc

Browse files
author
github-actions
committedMay 24, 2024
Update translations from Transifex
1 parent cb0ece3 commit 02c7adc

38 files changed

+1401
-1406
lines changed
 

‎c-api/apiabiversion.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
#, fuzzy
1111
msgid ""
1212
msgstr ""
13-
"Project-Id-Version: Python 3.12\n"
13+
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-05-04 01:27+0000\n"
15+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1717
"Last-Translator: Skydelta, 2024\n"
1818
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎c-api/datetime.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
#, fuzzy
1313
msgid ""
1414
msgstr ""
15-
"Project-Id-Version: Python 3.12\n"
15+
"Project-Id-Version: Python 3.13\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2024-05-04 01:27+0000\n"
17+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1818
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
1919
"Last-Translator: Taichi Haradaguchi, 2024\n"
2020
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎c-api/dict.po

Lines changed: 33 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-05-11 02:33+0000\n"
16+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
1818
"Last-Translator: tomo, 2024\n"
1919
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -156,7 +156,7 @@ msgstr ""
156156
msgid "If the key is missing, set *\\*result* to ``NULL`` and return ``0``."
157157
msgstr ""
158158

159-
#: ../../c-api/dict.rst:110 ../../c-api/dict.rst:206
159+
#: ../../c-api/dict.rst:110 ../../c-api/dict.rst:207
160160
msgid "On error, raise an exception and return ``-1``."
161161
msgstr "エラーの場合例外を送出し ``-1`` を返します。"
162162

@@ -248,64 +248,63 @@ msgid ""
248248
"For clarity: if you have a strong reference to *default_value* before "
249249
"calling this function, then after it returns, you hold a strong reference to "
250250
"both *default_value* and *\\*result* (if it's not ``NULL``). These may refer "
251-
"to the same object: in that case you hold two separate references to it. .. "
252-
"versionadded:: 3.13"
251+
"to the same object: in that case you hold two separate references to it."
253252
msgstr ""
254253

255-
#: ../../c-api/dict.rst:199
254+
#: ../../c-api/dict.rst:200
256255
msgid ""
257256
"Remove *key* from dictionary *p* and optionally return the removed value. Do "
258257
"not raise :exc:`KeyError` if the key missing."
259258
msgstr ""
260259

261-
#: ../../c-api/dict.rst:202
260+
#: ../../c-api/dict.rst:203
262261
msgid ""
263262
"If the key is present, set *\\*result* to a new reference to the removed "
264263
"value if *result* is not ``NULL``, and return ``1``."
265264
msgstr ""
266265

267-
#: ../../c-api/dict.rst:204
266+
#: ../../c-api/dict.rst:205
268267
msgid ""
269268
"If the key is missing, set *\\*result* to ``NULL`` if *result* is not "
270269
"``NULL``, and return ``0``."
271270
msgstr ""
272271

273-
#: ../../c-api/dict.rst:208
272+
#: ../../c-api/dict.rst:209
274273
msgid ""
275274
"This is similar to :meth:`dict.pop`, but without the default value and not "
276275
"raising :exc:`KeyError` if the key missing."
277276
msgstr ""
278277

279-
#: ../../c-api/dict.rst:216
278+
#: ../../c-api/dict.rst:217
280279
msgid ""
281280
"Similar to :c:func:`PyDict_Pop`, but *key* is specified as a :c:expr:`const "
282281
"char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`."
283282
msgstr ""
284283

285-
#: ../../c-api/dict.rst:225
284+
#: ../../c-api/dict.rst:226
286285
msgid ""
287286
"Return a :c:type:`PyListObject` containing all the items from the dictionary."
288287
msgstr "辞書内の全ての要素対が入った :c:type:`PyListObject` を返します。"
289288

290-
#: ../../c-api/dict.rst:230
289+
#: ../../c-api/dict.rst:231
291290
msgid ""
292291
"Return a :c:type:`PyListObject` containing all the keys from the dictionary."
293292
msgstr "辞書内の全てのキーが入った :c:type:`PyListObject` を返します。"
294293

295-
#: ../../c-api/dict.rst:235
294+
#: ../../c-api/dict.rst:236
296295
msgid ""
297296
"Return a :c:type:`PyListObject` containing all the values from the "
298297
"dictionary *p*."
299298
msgstr "辞書 *p* 内の全ての値が入った :c:type:`PyListObject` を返します。"
300299

301-
#: ../../c-api/dict.rst:243
300+
#: ../../c-api/dict.rst:244
302301
msgid ""
303302
"Return the number of items in the dictionary. This is equivalent to "
304303
"``len(p)`` on a dictionary."
305304
msgstr ""
306305
"辞書内の要素の数を返します。辞書に対して ``len(p)`` を実行するのと同じです。"
307306

308-
#: ../../c-api/dict.rst:249
307+
#: ../../c-api/dict.rst:250
309308
msgid ""
310309
"Iterate over all key-value pairs in the dictionary *p*. The :c:type:"
311310
"`Py_ssize_t` referred to by *ppos* must be initialized to ``0`` prior to the "
@@ -331,11 +330,11 @@ msgstr ""
331330
"この値は内部的な辞書構造体のオフセットを表現しており、構造体はスパースなの"
332331
"で、オフセットの値に一貫性がないためです。"
333332

334-
#: ../../c-api/dict.rst:260
333+
#: ../../c-api/dict.rst:261
335334
msgid "For example::"
336335
msgstr "例えば::"
337336

338-
#: ../../c-api/dict.rst:270
337+
#: ../../c-api/dict.rst:271
339338
msgid ""
340339
"The dictionary *p* should not be mutated during iteration. It is safe to "
341340
"modify the values of the keys as you iterate over the dictionary, but only "
@@ -345,7 +344,7 @@ msgstr ""
345344
"応する値を変更しても大丈夫になりましたが、キーの集合を変更しないことが前提で"
346345
"す。以下に例を示します::"
347346

348-
#: ../../c-api/dict.rst:295
347+
#: ../../c-api/dict.rst:296
349348
msgid ""
350349
"Iterate over mapping object *b* adding key-value pairs to dictionary *a*. "
351350
"*b* may be a dictionary, or any object supporting :c:func:`PyMapping_Keys` "
@@ -362,7 +361,7 @@ msgstr ""
362361
"行います。成功した場合には ``0`` を返し、例外が送出された場合には ``-1`` を返"
363362
"します。"
364363

365-
#: ../../c-api/dict.rst:305
364+
#: ../../c-api/dict.rst:306
366365
msgid ""
367366
"This is the same as ``PyDict_Merge(a, b, 1)`` in C, and is similar to ``a."
368367
"update(b)`` in Python except that :c:func:`PyDict_Update` doesn't fall back "
@@ -375,7 +374,7 @@ msgstr ""
375374
"性を持たない場合にキー/値ペアのシーケンスを反復することはありません。成功した"
376375
"場合には ``0`` を返し、例外が送出された場合には ``-1`` を返します。"
377376

378-
#: ../../c-api/dict.rst:314
377+
#: ../../c-api/dict.rst:315
379378
msgid ""
380379
"Update or merge into dictionary *a*, from the key-value pairs in *seq2*. "
381380
"*seq2* must be an iterable object producing iterable objects of length 2, "
@@ -391,49 +390,49 @@ msgstr ""
391390
"は ``-1`` を返します。(戻り値以外は) 等価な Python コードを書くと、以下のよう"
392391
"になります::"
393392

394-
#: ../../c-api/dict.rst:328
393+
#: ../../c-api/dict.rst:329
395394
msgid ""
396395
"Register *callback* as a dictionary watcher. Return a non-negative integer "
397396
"id which must be passed to future calls to :c:func:`PyDict_Watch`. In case "
398397
"of error (e.g. no more watcher IDs available), return ``-1`` and set an "
399398
"exception."
400399
msgstr ""
401400

402-
#: ../../c-api/dict.rst:337
401+
#: ../../c-api/dict.rst:338
403402
msgid ""
404403
"Clear watcher identified by *watcher_id* previously returned from :c:func:"
405404
"`PyDict_AddWatcher`. Return ``0`` on success, ``-1`` on error (e.g. if the "
406405
"given *watcher_id* was never registered.)"
407406
msgstr ""
408407

409-
#: ../../c-api/dict.rst:345
408+
#: ../../c-api/dict.rst:346
410409
msgid ""
411410
"Mark dictionary *dict* as watched. The callback granted *watcher_id* by :c:"
412411
"func:`PyDict_AddWatcher` will be called when *dict* is modified or "
413412
"deallocated. Return ``0`` on success or ``-1`` on error."
414413
msgstr ""
415414

416-
#: ../../c-api/dict.rst:353
415+
#: ../../c-api/dict.rst:354
417416
msgid ""
418417
"Mark dictionary *dict* as no longer watched. The callback granted "
419418
"*watcher_id* by :c:func:`PyDict_AddWatcher` will no longer be called when "
420419
"*dict* is modified or deallocated. The dict must previously have been "
421420
"watched by this watcher. Return ``0`` on success or ``-1`` on error."
422421
msgstr ""
423422

424-
#: ../../c-api/dict.rst:362
423+
#: ../../c-api/dict.rst:363
425424
msgid ""
426425
"Enumeration of possible dictionary watcher events: ``PyDict_EVENT_ADDED``, "
427426
"``PyDict_EVENT_MODIFIED``, ``PyDict_EVENT_DELETED``, "
428427
"``PyDict_EVENT_CLONED``, ``PyDict_EVENT_CLEARED``, or "
429428
"``PyDict_EVENT_DEALLOCATED``."
430429
msgstr ""
431430

432-
#: ../../c-api/dict.rst:370
431+
#: ../../c-api/dict.rst:371
433432
msgid "Type of a dict watcher callback function."
434433
msgstr ""
435434

436-
#: ../../c-api/dict.rst:372
435+
#: ../../c-api/dict.rst:373
437436
msgid ""
438437
"If *event* is ``PyDict_EVENT_CLEARED`` or ``PyDict_EVENT_DEALLOCATED``, both "
439438
"*key* and *new_value* will be ``NULL``. If *event* is ``PyDict_EVENT_ADDED`` "
@@ -442,22 +441,22 @@ msgid ""
442441
"dictionary and *new_value* will be ``NULL``."
443442
msgstr ""
444443

445-
#: ../../c-api/dict.rst:378
444+
#: ../../c-api/dict.rst:379
446445
msgid ""
447446
"``PyDict_EVENT_CLONED`` occurs when *dict* was previously empty and another "
448447
"dict is merged into it. To maintain efficiency of this operation, per-key "
449448
"``PyDict_EVENT_ADDED`` events are not issued in this case; instead a single "
450449
"``PyDict_EVENT_CLONED`` is issued, and *key* will be the source dictionary."
451450
msgstr ""
452451

453-
#: ../../c-api/dict.rst:384
452+
#: ../../c-api/dict.rst:385
454453
msgid ""
455454
"The callback may inspect but must not modify *dict*; doing so could have "
456455
"unpredictable effects, including infinite recursion. Do not trigger Python "
457456
"code execution in the callback, as it could modify the dict as a side effect."
458457
msgstr ""
459458

460-
#: ../../c-api/dict.rst:388
459+
#: ../../c-api/dict.rst:389
461460
msgid ""
462461
"If *event* is ``PyDict_EVENT_DEALLOCATED``, taking a new reference in the "
463462
"callback to the about-to-be-destroyed dictionary will resurrect it and "
@@ -466,20 +465,20 @@ msgid ""
466465
"again."
467466
msgstr ""
468467

469-
#: ../../c-api/dict.rst:394
468+
#: ../../c-api/dict.rst:395
470469
msgid ""
471470
"Callbacks occur before the notified modification to *dict* takes place, so "
472471
"the prior state of *dict* can be inspected."
473472
msgstr ""
474473

475-
#: ../../c-api/dict.rst:397
474+
#: ../../c-api/dict.rst:398
476475
msgid ""
477476
"If the callback sets an exception, it must return ``-1``; this exception "
478477
"will be printed as an unraisable exception using :c:func:"
479478
"`PyErr_WriteUnraisable`. Otherwise it should return ``0``."
480479
msgstr ""
481480

482-
#: ../../c-api/dict.rst:401
481+
#: ../../c-api/dict.rst:402
483482
msgid ""
484483
"There may already be a pending exception set on entry to the callback. In "
485484
"this case, the callback should return ``0`` with the same exception still "
@@ -496,10 +495,10 @@ msgstr "object"
496495
msgid "dictionary"
497496
msgstr "dictionary"
498497

499-
#: ../../c-api/dict.rst:241
498+
#: ../../c-api/dict.rst:242
500499
msgid "built-in function"
501500
msgstr "組み込み関数"
502501

503-
#: ../../c-api/dict.rst:241
502+
#: ../../c-api/dict.rst:242
504503
msgid "len"
505504
msgstr "len"

‎c-api/frame.po

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-05-11 02:33+0000\n"
15+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1616
"PO-Revision-Date: 2022-11-05 19:48+0000\n"
1717
"Last-Translator: Arihiro TAKASE, 2023\n"
1818
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -95,7 +95,7 @@ msgstr ""
9595
msgid "Get the *frame* code."
9696
msgstr ""
9797

98-
#: ../../c-api/frame.rst:64 ../../c-api/frame.rst:129
98+
#: ../../c-api/frame.rst:64 ../../c-api/frame.rst:130
9999
msgid "Return a :term:`strong reference`."
100100
msgstr ""
101101

@@ -156,40 +156,41 @@ msgstr ""
156156
#: ../../c-api/frame.rst:123
157157
msgid ""
158158
"Get the *frame*'s :attr:`~frame.f_locals` attribute. If the frame refers to "
159-
"a function or comprehension, this returns a write-through proxy object that "
160-
"allows modifying the locals. In all other cases (classes, modules) it "
161-
"returns the :class:`dict` representing the frame locals directly."
159+
"an :term:`optimized scope`, this returns a write-through proxy object that "
160+
"allows modifying the locals. In all other cases (classes, modules, :func:"
161+
"`exec`, :func:`eval`) it returns the mapping representing the frame locals "
162+
"directly (as described for :func:`locals`)."
162163
msgstr ""
163164

164-
#: ../../c-api/frame.rst:133
165-
msgid "Return a proxy object for functions and comprehensions."
165+
#: ../../c-api/frame.rst:134
166+
msgid "As part of :pep:`667`, return a proxy object for optimized scopes."
166167
msgstr ""
167168

168-
#: ../../c-api/frame.rst:139
169+
#: ../../c-api/frame.rst:140
169170
msgid "Return the line number that *frame* is currently executing."
170171
msgstr "*frame* が現在実行している行番号を返します。"
171172

172-
#: ../../c-api/frame.rst:144
173+
#: ../../c-api/frame.rst:145
173174
msgid "Internal Frames"
174175
msgstr ""
175176

176-
#: ../../c-api/frame.rst:146
177+
#: ../../c-api/frame.rst:147
177178
msgid "Unless using :pep:`523`, you will not need this."
178179
msgstr ""
179180

180-
#: ../../c-api/frame.rst:150
181+
#: ../../c-api/frame.rst:151
181182
msgid "The interpreter's internal frame representation."
182183
msgstr ""
183184

184-
#: ../../c-api/frame.rst:156
185+
#: ../../c-api/frame.rst:157
185186
msgid "Return a :term:`strong reference` to the code object for the frame."
186187
msgstr ""
187188

188-
#: ../../c-api/frame.rst:163
189+
#: ../../c-api/frame.rst:164
189190
msgid "Return the byte offset into the last executed instruction."
190191
msgstr ""
191192

192-
#: ../../c-api/frame.rst:170
193+
#: ../../c-api/frame.rst:171
193194
msgid ""
194195
"Return the currently executing line number, or -1 if there is no line number."
195196
msgstr ""

‎c-api/function.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
#, fuzzy
1111
msgid ""
1212
msgstr ""
13-
"Project-Id-Version: Python 3.12\n"
13+
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-05-04 01:27+0000\n"
15+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
1717
"Last-Translator: Taichi Haradaguchi, 2024\n"
1818
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎c-api/iterator.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
#, fuzzy
1111
msgid ""
1212
msgstr ""
13-
"Project-Id-Version: Python 3.12\n"
13+
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-05-04 01:27+0000\n"
15+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
1717
"Last-Translator: Taichi Haradaguchi, 2024\n"
1818
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎c-api/marshal.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
#, fuzzy
1212
msgid ""
1313
msgstr ""
14-
"Project-Id-Version: Python 3.12\n"
14+
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-05-04 01:27+0000\n"
16+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
1818
"Last-Translator: Taichi Haradaguchi, 2024\n"
1919
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎c-api/module.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.13\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2024-05-11 02:33+0000\n"
17+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1818
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
1919
"Last-Translator: Nozomu Kaneko <nozom.kaneko@gmail.com>, 2023\n"
2020
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -617,8 +617,8 @@ msgstr ""
617617
msgid ""
618618
"This slot is ignored by Python builds not configured with :option:`--disable-"
619619
"gil`. Otherwise, it determines whether or not importing this module will "
620-
"cause the GIL to be automatically enabled. See :envvar:`PYTHON_GIL` and :"
621-
"option:`-X gil <-X>` for more detail."
620+
"cause the GIL to be automatically enabled. See :ref:`free-threaded-cpython` "
621+
"for more detail."
622622
msgstr ""
623623

624624
#: ../../c-api/module.rst:432

‎glossary.po

Lines changed: 130 additions & 115 deletions
Large diffs are not rendered by default.

‎howto/isolating-extensions.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
#, fuzzy
1111
msgid ""
1212
msgstr ""
13-
"Project-Id-Version: Python 3.12\n"
13+
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-05-04 01:27+0000\n"
15+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1616
"PO-Revision-Date: 2022-11-05 19:48+0000\n"
1717
"Last-Translator: Taichi Haradaguchi, 2024\n"
1818
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎library/code.po

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-05-11 02:33+0000\n"
15+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:56+0000\n"
1717
"Last-Translator: Tetsuo Koyama <tkoyama010@gmail.com>, 2021\n"
1818
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -46,16 +46,10 @@ msgid ""
4646
"This class deals with parsing and interpreter state (the user's namespace); "
4747
"it does not deal with input buffering or prompting or input file naming (the "
4848
"filename is always passed in explicitly). The optional *locals* argument "
49-
"specifies the dictionary in which code will be executed; it defaults to a "
50-
"newly created dictionary with key ``'__name__'`` set to ``'__console__'`` "
51-
"and key ``'__doc__'`` set to ``None``."
49+
"specifies a mapping to use as the namespace in which code will be executed; "
50+
"it defaults to a newly created dictionary with key ``'__name__'`` set to "
51+
"``'__console__'`` and key ``'__doc__'`` set to ``None``."
5252
msgstr ""
53-
"このクラスは構文解析とインタプリタ状態(ユーザの名前空間)を取り扱います。入力"
54-
"バッファリングやプロンプト出力、または入力ファイル指定を扱いません(ファイル名"
55-
"は常に明示的に渡されます)。オプションの *locals* 引数はその中でコードが実行さ"
56-
"れる辞書を指定します。その初期値は、キー ``'__name__'`` が ``'__console__'`` "
57-
"に設定され、キー ``'__doc__'`` が ``None`` に設定された新しく作られた辞書で"
58-
"す。"
5953

6054
#: ../../library/code.rst:28
6155
msgid ""

‎library/dataclasses.po

Lines changed: 98 additions & 95 deletions
Large diffs are not rendered by default.

‎library/functions.po

Lines changed: 380 additions & 368 deletions
Large diffs are not rendered by default.

‎library/hashlib.po

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-05-11 02:33+0000\n"
15+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1616
"PO-Revision-Date: 2021-06-28 01:07+0000\n"
1717
"Last-Translator: tomo, 2023\n"
1818
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -395,12 +395,10 @@ msgstr ""
395395

396396
#: ../../library/hashlib.rst:331
397397
msgid ""
398-
"*dklen* is the length of the derived key. If *dklen* is ``None`` then the "
399-
"digest size of the hash algorithm *hash_name* is used, e.g. 64 for SHA-512."
398+
"*dklen* is the length of the derived key in bytes. If *dklen* is ``None`` "
399+
"then the digest size of the hash algorithm *hash_name* is used, e.g. 64 for "
400+
"SHA-512."
400401
msgstr ""
401-
"*dklen* は、導出された鍵の長さです。 *dklen* が ``None`` の場合、ハッシュアル"
402-
"ゴリズム *hash_name* のダイジェストサイズが使われます。例えば SHA-512 では "
403-
"64 です。"
404402

405403
#: ../../library/hashlib.rst:340
406404
msgid "Function only available when Python is compiled with OpenSSL."
@@ -436,7 +434,7 @@ msgstr ""
436434
msgid ""
437435
"*n* is the CPU/Memory cost factor, *r* the block size, *p* parallelization "
438436
"factor and *maxmem* limits memory (OpenSSL 1.1.0 defaults to 32 MiB). "
439-
"*dklen* is the length of the derived key."
437+
"*dklen* is the length of the derived key in bytes."
440438
msgstr ""
441439

442440
#: ../../library/hashlib.rst:368

‎library/i18n.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
#, fuzzy
1111
msgid ""
1212
msgstr ""
13-
"Project-Id-Version: Python 3.12\n"
13+
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-05-04 01:27+0000\n"
15+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1616
"PO-Revision-Date: 2021-06-28 01:07+0000\n"
1717
"Last-Translator: Taichi Haradaguchi, 2024\n"
1818
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎library/itertools.po

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ msgid ""
1717
msgstr ""
1818
"Project-Id-Version: Python 3.13\n"
1919
"Report-Msgid-Bugs-To: \n"
20-
"POT-Creation-Date: 2024-05-17 14:15+0000\n"
20+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
2121
"PO-Revision-Date: 2021-06-28 01:08+0000\n"
2222
"Last-Translator: Taichi Haradaguchi, 2024\n"
2323
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -944,7 +944,7 @@ msgstr ""
944944
msgid "Return *n* independent iterators from a single iterable."
945945
msgstr "一つの iterable から *n* 個の独立したイテレータを返します。"
946946

947-
#: ../../library/itertools.rst:714
947+
#: ../../library/itertools.rst:715
948948
msgid ""
949949
"Once a :func:`tee` has been created, the original *iterable* should not be "
950950
"used anywhere else; otherwise, the *iterable* could get advanced without the "
@@ -954,14 +954,14 @@ msgstr ""
954954
"さもなければ、 :func:`tee` オブジェクトの知らない間に *iterable* が先の要素に"
955955
"進んでしまうことになります。"
956956

957-
#: ../../library/itertools.rst:718
957+
#: ../../library/itertools.rst:719
958958
msgid ""
959959
"``tee`` iterators are not threadsafe. A :exc:`RuntimeError` may be raised "
960960
"when simultaneously using iterators returned by the same :func:`tee` call, "
961961
"even if the original *iterable* is threadsafe."
962962
msgstr ""
963963

964-
#: ../../library/itertools.rst:722
964+
#: ../../library/itertools.rst:723
965965
msgid ""
966966
"This itertool may require significant auxiliary storage (depending on how "
967967
"much temporary data needs to be stored). In general, if one iterator uses "
@@ -973,7 +973,7 @@ msgstr ""
973973
"よりも先にほとんどまたは全ての要素を消費するような場合には、 :func:`tee` より"
974974
"も :func:`list` を使った方が高速です。"
975975

976-
#: ../../library/itertools.rst:730
976+
#: ../../library/itertools.rst:731
977977
msgid ""
978978
"Make an iterator that aggregates elements from each of the iterables. If the "
979979
"iterables are of uneven length, missing values are filled-in with "
@@ -984,7 +984,7 @@ msgstr ""
984984
"合、足りない値は *fillvalue* で埋められます。最も長い itarable が尽きるまでイ"
985985
"テレーションします。およそ次と等価です::"
986986

987-
#: ../../library/itertools.rst:754
987+
#: ../../library/itertools.rst:755
988988
msgid ""
989989
"If one of the iterables is potentially infinite, then the :func:"
990990
"`zip_longest` function should be wrapped with something that limits the "
@@ -995,19 +995,19 @@ msgstr ""
995995
"するような何かでラップしなければいけません(例えば :func:`islice` or :func:"
996996
"`takewhile`)。 *fillvalue* は指定しない場合のデフォルトは ``None`` です。"
997997

998-
#: ../../library/itertools.rst:763
998+
#: ../../library/itertools.rst:764
999999
msgid "Itertools Recipes"
10001000
msgstr "Itertools レシピ"
10011001

1002-
#: ../../library/itertools.rst:765
1002+
#: ../../library/itertools.rst:766
10031003
msgid ""
10041004
"This section shows recipes for creating an extended toolset using the "
10051005
"existing itertools as building blocks."
10061006
msgstr ""
10071007
"この節では、既存の itertools を素材としてツールセットを拡張するためのレシピを"
10081008
"示します。"
10091009

1010-
#: ../../library/itertools.rst:768
1010+
#: ../../library/itertools.rst:769
10111011
msgid ""
10121012
"The primary purpose of the itertools recipes is educational. The recipes "
10131013
"show various ways of thinking about individual tools — for example, that "
@@ -1019,21 +1019,21 @@ msgid ""
10191019
"``map()``, ``filter()``, ``reversed()``, and ``enumerate()``."
10201020
msgstr ""
10211021

1022-
#: ../../library/itertools.rst:777
1022+
#: ../../library/itertools.rst:778
10231023
msgid ""
10241024
"A secondary purpose of the recipes is to serve as an incubator. The "
10251025
"``accumulate()``, ``compress()``, and ``pairwise()`` itertools started out "
10261026
"as recipes. Currently, the ``sliding_window()``, ``iter_index()``, and "
10271027
"``sieve()`` recipes are being tested to see whether they prove their worth."
10281028
msgstr ""
10291029

1030-
#: ../../library/itertools.rst:782
1030+
#: ../../library/itertools.rst:783
10311031
msgid ""
10321032
"Substantially all of these recipes and many, many others can be installed "
10331033
"from the :pypi:`more-itertools` project found on the Python Package Index::"
10341034
msgstr ""
10351035

1036-
#: ../../library/itertools.rst:788
1036+
#: ../../library/itertools.rst:789
10371037
msgid ""
10381038
"Many of the recipes offer the same high performance as the underlying "
10391039
"toolset. Superior memory performance is kept by processing elements one at a "
@@ -1045,6 +1045,6 @@ msgid ""
10451045
"overhead."
10461046
msgstr ""
10471047

1048-
#: ../../library/itertools.rst:964
1048+
#: ../../library/itertools.rst:965
10491049
msgid "The following recipes have a more mathematical flavor:"
10501050
msgstr ""

‎library/marshal.po

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.13\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2024-05-11 02:33+0000\n"
17+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1818
"PO-Revision-Date: 2021-06-28 01:09+0000\n"
1919
"Last-Translator: tomo, 2023\n"
2020
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -34,16 +34,10 @@ msgid ""
3434
"This module contains functions that can read and write Python values in a "
3535
"binary format. The format is specific to Python, but independent of machine "
3636
"architecture issues (e.g., you can write a Python value to a file on a PC, "
37-
"transport the file to a Sun, and read it back there). Details of the format "
37+
"transport the file to a Mac, and read it back there). Details of the format "
3838
"are undocumented on purpose; it may change between Python versions (although "
3939
"it rarely does). [#]_"
4040
msgstr ""
41-
"このモジュールには Python 値をバイナリ形式で読み書きできるような関数が含まれ"
42-
"ています。このバイナリ形式は Python 特有のものですが、マシンアーキテクチャ非"
43-
"依存のものです (つまり、Python の値を PC 上でファイルに書き込み、Sun に転送"
44-
"し、そこで読み戻すことができます)。バイナリ形式の詳細は意図的にドキュメント化"
45-
"されていません; この形式は (稀にしかないことですが) Python のバージョン間で変"
46-
"更される可能性があるからです。[#]_"
4741

4842
#: ../../library/marshal.rst:21
4943
msgid ""

‎library/pdb.po

Lines changed: 122 additions & 115 deletions
Large diffs are not rendered by default.

‎library/profile.po

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.13\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2024-05-11 02:33+0000\n"
17+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1818
"PO-Revision-Date: 2021-06-28 01:11+0000\n"
1919
"Last-Translator: Arihiro TAKASE, 2023\n"
2020
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -407,11 +407,8 @@ msgstr ""
407407
#: ../../library/profile.rst:236
408408
msgid ""
409409
"This function is similar to :func:`run`, with added arguments to supply the "
410-
"globals and locals dictionaries for the *command* string. This routine "
411-
"executes::"
410+
"globals and locals mappings for the *command* string. This routine executes::"
412411
msgstr ""
413-
"この関数は :func:`run` に似ていますが、 globals、 locals 辞書を *command* の"
414-
"ために与えるための追加引数を取ります。このルーチンは以下を実行します::"
415412

416413
#: ../../library/profile.rst:242
417414
msgid "and gathers profiling statistics as in the :func:`run` function above."

‎library/socket.po

Lines changed: 91 additions & 95 deletions
Large diffs are not rendered by default.

‎library/threading.po

Lines changed: 173 additions & 160 deletions
Large diffs are not rendered by default.

‎library/traceback.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.13\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2024-05-11 18:37+0000\n"
18+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1919
"PO-Revision-Date: 2021-06-28 01:16+0000\n"
2020
"Last-Translator: Taichi Haradaguchi, 2024\n"
2121
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -568,7 +568,7 @@ msgid ""
568568
"class:`!FrameSummary` has the :attr:`~FrameSummary.line` attribute accessed "
569569
"(which also happens when casting it to a :class:`tuple`). :attr:"
570570
"`~FrameSummary.line` may be directly provided, and will prevent line lookups "
571-
"happening at all. *locals* is an optional local variable dictionary, and if "
571+
"happening at all. *locals* is an optional local variable mapping, and if "
572572
"supplied the variable representations are stored in the summary for later "
573573
"display."
574574
msgstr ""

‎library/typing.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ msgid ""
1818
msgstr ""
1919
"Project-Id-Version: Python 3.13\n"
2020
"Report-Msgid-Bugs-To: \n"
21-
"POT-Creation-Date: 2024-05-11 02:33+0000\n"
21+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
2222
"PO-Revision-Date: 2021-06-28 01:16+0000\n"
2323
"Last-Translator: Takuya Futatsugi, 2024\n"
2424
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -2321,7 +2321,7 @@ msgid ""
23212321
msgstr ""
23222322

23232323
#: ../../library/typing.rst:2549
2324-
msgid "Support for :data:`ReadOnly` is reflected in the following attributes::"
2324+
msgid "Support for :data:`ReadOnly` is reflected in the following attributes:"
23252325
msgstr ""
23262326

23272327
#: ../../library/typing.rst:2553

‎library/unittest.mock.po

Lines changed: 53 additions & 84 deletions
Large diffs are not rendered by default.

‎license.po

Lines changed: 2 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-05-11 02:33+0000\n"
16+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1818
"Last-Translator: tomo, 2024\n"
1919
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -502,38 +502,7 @@ msgid "mimalloc"
502502
msgstr ""
503503

504504
#: ../../license.rst:1050
505-
msgid "MIT License"
506-
msgstr ""
507-
508-
#: ../../license.rst:1052
509-
msgid "Copyright (c) 2018-2021 Microsoft Corporation, Daan Leijen"
510-
msgstr ""
511-
512-
#: ../../license.rst:1054
513-
msgid ""
514-
"Permission is hereby granted, free of charge, to any person obtaining a copy "
515-
"of this software and associated documentation files (the \"Software\"), to "
516-
"deal in the Software without restriction, including without limitation the "
517-
"rights to use, copy, modify, merge, publish, distribute, sublicense, and/or "
518-
"sell copies of the Software, and to permit persons to whom the Software is "
519-
"furnished to do so, subject to the following conditions:"
520-
msgstr ""
521-
522-
#: ../../license.rst:1061
523-
msgid ""
524-
"The above copyright notice and this permission notice shall be included in "
525-
"all copies or substantial portions of the Software."
526-
msgstr ""
527-
528-
#: ../../license.rst:1064
529-
msgid ""
530-
"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR "
531-
"IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, "
532-
"FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE "
533-
"AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER "
534-
"LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING "
535-
"FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS "
536-
"IN THE SOFTWARE."
505+
msgid "MIT License::"
537506
msgstr ""
538507

539508
#: ../../license.rst:1074

‎reference/datamodel.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ msgid ""
2121
msgstr ""
2222
"Project-Id-Version: Python 3.13\n"
2323
"Report-Msgid-Bugs-To: \n"
24-
"POT-Creation-Date: 2024-05-11 02:33+0000\n"
24+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
2525
"PO-Revision-Date: 2021-06-28 01:19+0000\n"
2626
"Last-Translator: Takeshi Nakazato, 2024\n"
2727
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -1827,7 +1827,7 @@ msgstr ""
18271827
#: ../../reference/datamodel.rst:1347
18281828
msgid ""
18291829
"The dictionary used by the frame to look up :ref:`local variables <naming>`. "
1830-
"If the frame refers to a function or comprehension, this may return a write-"
1830+
"If the frame refers to an :term:`optimized scope`, this may return a write-"
18311831
"through proxy object."
18321832
msgstr ""
18331833

‎reference/simple_stmts.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
#, fuzzy
2020
msgid ""
2121
msgstr ""
22-
"Project-Id-Version: Python 3.12\n"
22+
"Project-Id-Version: Python 3.13\n"
2323
"Report-Msgid-Bugs-To: \n"
24-
"POT-Creation-Date: 2024-05-03 14:14+0000\n"
24+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
2525
"PO-Revision-Date: 2021-06-28 01:49+0000\n"
2626
"Last-Translator: Takeshi Nakazato, 2024\n"
2727
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎tutorial/appendix.po

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-05-11 02:33+0000\n"
15+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1616
"PO-Revision-Date: 2021-06-28 01:49+0000\n"
1717
"Last-Translator: TENMYO Masakazu, 2024\n"
1818
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -37,6 +37,8 @@ msgid ""
3737
"interpreter is supported on all platforms with minimal line control "
3838
"capabilities."
3939
msgstr ""
40+
"対話型の :term:`REPL` は2種類あります。 クラシックな基本インタープリタは最低"
41+
"限の行制御機能を持つ全プラットフォームでサポートされています。"
4042

4143
#: ../../tutorial/appendix.rst:17
4244
msgid ""
@@ -50,18 +52,31 @@ msgid ""
5052
"`F3` enters \"paste mode\", which makes pasting larger blocks of code "
5153
"easier. Press :kbd:`F3` to return to the regular prompt."
5254
msgstr ""
55+
":mod:`curses` と :mod:`readline` をサポートするUnix系システム(LinuxやmacOSな"
56+
"ど)では、新しい対話型シェルがデフォルトで使われます。これはカラー、複数行編"
57+
"集、履歴ブラウズ、ペーストモードをサポートします。 カラーを無効にするに"
58+
"は、 :ref:`using-on-controlling-color` を参照してください。ファンクションキー"
59+
"は いくつかの追加機能を提供します。 :kbd:`F1` は対話型ヘルプブラウザ :mod:"
60+
"`pydoc` に入ります。 :kbd:`F2` は :term:`>>` や :term:`...` のプロンプトを出"
61+
"さずにコマンドライン履歴を見れます。 :kbd:`F3` はペーストモードに入り、大きな"
62+
"コードブロックを簡単に貼り付けられるようになります。 :kbd:`F3` を押して通常の"
63+
"プロンプトに戻ります。"
5364

5465
#: ../../tutorial/appendix.rst:28
5566
msgid ""
5667
"When using the new interactive shell, exit the shell by typing :kbd:`exit` "
5768
"or :kbd:`quit`. Adding call parentheses after those commands is not required."
5869
msgstr ""
70+
"新しい対話型シェルでは、 :kbd:`exit` または :kbd:`quit` と打ってシェルを終え"
71+
"ます。これらのコマンドの後に呼び出し括弧を追加する必要はありません。"
5972

6073
#: ../../tutorial/appendix.rst:32
6174
msgid ""
6275
"If the new interactive shell is not desired, it can be disabled via the :"
6376
"envvar:`PYTHON_BASIC_REPL` environment variable."
6477
msgstr ""
78+
"新しい対話型シェルを望まない場合は、環境変数 :envvar:`PYTHON_BASIC_REPL` で無"
79+
"効にできます。"
6580

6681
#: ../../tutorial/appendix.rst:38
6782
msgid "Error Handling"

‎tutorial/datastructures.po

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
#, fuzzy
1212
msgid ""
1313
msgstr ""
14-
"Project-Id-Version: Python 3.12\n"
14+
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-05-10 14:14+0000\n"
16+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1717
"PO-Revision-Date: 2021-06-28 01:50+0000\n"
1818
"Last-Translator: TENMYO Masakazu, 2024\n"
1919
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -160,6 +160,11 @@ msgid ""
160160
"other types. Also, there are some types that don't have a defined ordering "
161161
"relation. For example, ``3+4j < 5+7j`` isn't a valid comparison."
162162
msgstr ""
163+
"もうひとつ気付くとしたら、すべてのデータでソートや比較できるわけではないとい"
164+
"うことです。 例えば、 ``[None, 'hello', 10]`` はソートされません。なぜなら整"
165+
"数は文字列と比べられませんし、 ``None`` は他の型と比べられないからです。 ま"
166+
"た、順序関係が定義されていない型もあります。 例えば、 ``3+4j < 5+7j`` は有効"
167+
"な比較ではありません。"
163168

164169
#: ../../tutorial/datastructures.rst:138
165170
msgid "Using Lists as Stacks"

‎tutorial/floatingpoint.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
#, fuzzy
1212
msgid ""
1313
msgstr ""
14-
"Project-Id-Version: Python 3.12\n"
14+
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-05-04 01:27+0000\n"
16+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1717
"PO-Revision-Date: 2021-06-28 01:50+0000\n"
1818
"Last-Translator: TENMYO Masakazu, 2024\n"
1919
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎tutorial/inputoutput.po

Lines changed: 81 additions & 78 deletions
Large diffs are not rendered by default.

‎tutorial/interpreter.po

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,16 @@
66
# Translators:
77
# tomo, 2021
88
# Takanori Suzuki <takanori@takanory.net>, 2023
9+
# TENMYO Masakazu, 2024
910
#
1011
#, fuzzy
1112
msgid ""
1213
msgstr ""
1314
"Project-Id-Version: Python 3.13\n"
1415
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-05-11 02:33+0000\n"
16+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1617
"PO-Revision-Date: 2021-06-28 01:50+0000\n"
17-
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2023\n"
18+
"Last-Translator: TENMYO Masakazu, 2024\n"
1819
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
1920
"ja/)\n"
2021
"MIME-Version: 1.0\n"
@@ -38,6 +39,10 @@ msgid ""
3839
"available; putting :file:`/usr/local/bin` in your Unix shell's search path "
3940
"makes it possible to start it by typing the command:"
4041
msgstr ""
42+
"Python が使用可能な環境では、インタプリタは一般的に |"
43+
"usr_local_bin_python_x_dot_y_literal| にインストールされています。使用してい"
44+
"る Unix シェルの検索パスに :file:`/usr/local/bin` を追加すると、次のコマンド"
45+
"でインタプリタを開始できます:"
4146

4247
#: ../../tutorial/interpreter.rst:21
4348
msgid ""
@@ -59,6 +64,12 @@ msgid ""
5964
"can use the :file:`py` command. See :ref:`setting-envvars` for other ways to "
6065
"launch Python."
6166
msgstr ""
67+
":ref:`Microsoft ストア <windows-store>` からPythonのインストールを行った "
68+
"Windows マシンでは、 |python_x_dot_y_literal| コマンドが利用できます。\n"
69+
":ref:`py.exe ランチャ <launcher>` をインストールした場合、 :file:`py` コマン"
70+
"ドが使えます。\n"
71+
"Python を起動する他の方法については :ref:`setting-envvars` を参照してくださ"
72+
"い。"
6273

6374
#: ../../tutorial/interpreter.rst:31
6475
msgid ""

‎tutorial/introduction.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
#, fuzzy
1717
msgid ""
1818
msgstr ""
19-
"Project-Id-Version: Python 3.12\n"
19+
"Project-Id-Version: Python 3.13\n"
2020
"Report-Msgid-Bugs-To: \n"
21-
"POT-Creation-Date: 2024-05-03 14:14+0000\n"
21+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
2222
"PO-Revision-Date: 2021-06-28 01:50+0000\n"
2323
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2024\n"
2424
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎tutorial/venv.po

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.13\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2024-05-17 14:15+0000\n"
17+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1818
"PO-Revision-Date: 2021-06-28 01:50+0000\n"
1919
"Last-Translator: TENMYO Masakazu, 2024\n"
2020
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -93,15 +93,10 @@ msgstr "仮想環境の作成"
9393
#: ../../tutorial/venv.rst:38
9494
msgid ""
9595
"The module used to create and manage virtual environments is called :mod:"
96-
"`venv`. :mod:`venv` will usually install the most recent version of Python "
97-
"that you have available. If you have multiple versions of Python on your "
98-
"system, you can select a specific Python version by running ``python3`` or "
99-
"whichever version you want."
96+
"`venv`. :mod:`venv` will install the Python version from which the command "
97+
"was run (as reported by the :option:`--version` option). For instance, "
98+
"excuting the command with ``python3.12`` will install version 3.12."
10099
msgstr ""
101-
"仮想環境の作成と管理を行うためのモジュールが :mod:`venv` です。 :mod:`venv` "
102-
"は通常利用可能なもっとも新しいバージョンの Python をインストールします。複数"
103-
"のバージョンの Python がインストールされている場合、 ``python3`` のように利用"
104-
"したいバージョンを指定して実行することで Python バージョンを選択できます。"
105100

106101
#: ../../tutorial/venv.rst:44
107102
msgid ""

‎using/cmdline.po

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

‎using/configure.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.13\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2024-05-11 02:33+0000\n"
17+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1818
"PO-Revision-Date: 2021-06-28 01:50+0000\n"
1919
"Last-Translator: tomo, 2024\n"
2020
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -557,8 +557,7 @@ msgid ""
557557
msgstr ""
558558

559559
#: ../../using/configure.rst:302
560-
msgid ""
561-
"See :pep:`703` \"Making the Global Interpreter Lock Optional in CPython\"."
560+
msgid "See :ref:`free-threaded-cpython` for more detail."
562561
msgstr ""
563562

564563
#: ../../using/configure.rst:308

‎whatsnew/2.1.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
#, fuzzy
1212
msgid ""
1313
msgstr ""
14-
"Project-Id-Version: Python 3.12\n"
14+
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-05-03 14:14+0000\n"
16+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1717
"PO-Revision-Date: 2021-06-28 01:51+0000\n"
1818
"Last-Translator: souma987, 2023\n"
1919
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎whatsnew/2.2.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
#, fuzzy
1212
msgid ""
1313
msgstr ""
14-
"Project-Id-Version: Python 3.12\n"
14+
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-05-03 14:14+0000\n"
16+
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
1717
"PO-Revision-Date: 2021-06-28 01:51+0000\n"
1818
"Last-Translator: Taichi Haradaguchi, 2024\n"
1919
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

0 commit comments

Comments
 (0)
Please sign in to comment.