Skip to content

Commit 8dd726f

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 815d7e6 commit 8dd726f

14 files changed

Lines changed: 17530 additions & 17502 deletions

File tree

c-api/import.po

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.15\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-06-02 00:16+0000\n"
14+
"POT-Creation-Date: 2026-06-09 16:27+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/"
@@ -510,38 +510,32 @@ msgstr ""
510510
msgid "Make all imports lazy by default."
511511
msgstr ""
512512

513-
#: ../../c-api/import.rst:398
514-
msgid ""
515-
"Disable lazy imports entirely. Even explicit ``lazy`` statements become "
516-
"eager imports."
517-
msgstr ""
518-
519-
#: ../../c-api/import.rst:405
513+
#: ../../c-api/import.rst:400
520514
msgid ""
521515
"This function is a building block that enables embedders to implement the :"
522516
"py:meth:`~importlib.abc.Loader.create_module` step of custom static "
523517
"extension importers (e.g. of statically-linked extensions)."
524518
msgstr ""
525519

526-
#: ../../c-api/import.rst:409
520+
#: ../../c-api/import.rst:404
527521
msgid "*spec* must be a :class:`~importlib.machinery.ModuleSpec` object."
528522
msgstr ""
529523

530-
#: ../../c-api/import.rst:411
524+
#: ../../c-api/import.rst:406
531525
msgid ""
532526
"*initfunc* must be an :ref:`initialization function <extension-export-"
533527
"hook>`, the same as for :c:func:`PyImport_AppendInittab`."
534528
msgstr ""
535529

536-
#: ../../c-api/import.rst:414
530+
#: ../../c-api/import.rst:409
537531
msgid ""
538532
"On success, create and return a module object. This module will not be "
539533
"initialized; call :c:func:`PyModule_Exec` to initialize it. (Custom "
540534
"importers should do this in their :py:meth:`~importlib.abc.Loader."
541535
"exec_module` method.)"
542536
msgstr ""
543537

544-
#: ../../c-api/import.rst:420
538+
#: ../../c-api/import.rst:415
545539
msgid "On error, return NULL with an exception set."
546540
msgstr ""
547541

c-api/typeobj.po

Lines changed: 8 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.15\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2026-06-02 00:16+0000\n"
15+
"POT-Creation-Date: 2026-06-09 16:27+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Cheesecake, 2025\n"
1818
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -4423,8 +4423,8 @@ msgstr ""
44234423

44244424
#: ../../c-api/typeobj.rst:2977
44254425
msgid ""
4426-
"Check if the request can be met. If not, raise :exc:`BufferError`, set :c:"
4427-
"expr:`view->obj` to ``NULL`` and return ``-1``."
4426+
"Check if the request can be met. If not, raise :exc:`BufferError`, set "
4427+
"``view->obj`` to ``NULL`` and return ``-1``."
44284428
msgstr ""
44294429

44304430
#: ../../c-api/typeobj.rst:2980
@@ -4436,11 +4436,8 @@ msgid "Increment an internal counter for the number of exports."
44364436
msgstr "エクスポートした回数を保持する内部カウンタをインクリメントします。"
44374437

44384438
#: ../../c-api/typeobj.rst:2984
4439-
msgid ""
4440-
"Set :c:expr:`view->obj` to *exporter* and increment :c:expr:`view->obj`."
4439+
msgid "Set ``view->obj`` to *exporter* and increment ``view->obj``."
44414440
msgstr ""
4442-
":c:expr:`view->obj` に *exporter* を設定し、 :c:expr:`view->obj` をインクリメ"
4443-
"ントします。"
44444441

44454442
#: ../../c-api/typeobj.rst:2986
44464443
msgid "Return ``0``."
@@ -4491,20 +4488,15 @@ msgstr ""
44914488

44924489
#: ../../c-api/typeobj.rst:3009
44934490
msgid ""
4494-
"Re-export: Each member of the tree acts as the exporting object and sets :c:"
4495-
"expr:`view->obj` to a new reference to itself."
4491+
"Re-export: Each member of the tree acts as the exporting object and sets "
4492+
"``view->obj`` to a new reference to itself."
44964493
msgstr ""
4497-
"再エクスポート: ツリーの各要素がエクスポートされるオブジェクトとして振る舞"
4498-
"い、自身への新しい参照を :c:expr:`view->obj` へセットします。"
44994494

45004495
#: ../../c-api/typeobj.rst:3012
45014496
msgid ""
45024497
"Redirect: The buffer request is redirected to the root object of the tree. "
4503-
"Here, :c:expr:`view->obj` will be a new reference to the root object."
4498+
"Here, ``view->obj`` will be a new reference to the root object."
45044499
msgstr ""
4505-
"リダイレクト: バッファ要求がツリーのルートオブジェクトにリダイレクトされま"
4506-
"す。ここでは、 :c:expr:`view->obj` はルートオブジェクトへの新しい参照になりま"
4507-
"す。"
45084500

45094501
#: ../../c-api/typeobj.rst:3016
45104502
msgid ""
@@ -4601,13 +4593,10 @@ msgstr ""
46014593

46024594
#: ../../c-api/typeobj.rst:3067
46034595
msgid ""
4604-
"This function MUST NOT decrement :c:expr:`view->obj`, since that is done "
4596+
"This function MUST NOT decrement ``view->obj``, since that is done "
46054597
"automatically in :c:func:`PyBuffer_Release` (this scheme is useful for "
46064598
"breaking reference cycles)."
46074599
msgstr ""
4608-
"この関数は、:c:expr:`view->obj` をデクリメントしてはいけません、なぜならそれ"
4609-
"は :c:func:`PyBuffer_Release` で自動的に行われるからです(この方式は参照の循環"
4610-
"を防ぐのに有用です)。"
46114600

46124601
#: ../../c-api/typeobj.rst:3072
46134602
msgid ""

howto/functional.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.15\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-06-02 00:16+0000\n"
14+
"POT-Creation-Date: 2026-06-09 16:27+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/"
@@ -1870,7 +1870,7 @@ msgid ""
18701870
">>> functools.reduce(operator.concat, [])\n"
18711871
"Traceback (most recent call last):\n"
18721872
" ...\n"
1873-
"TypeError: reduce() of empty sequence with no initial value\n"
1873+
"TypeError: reduce() of empty iterable with no initial value\n"
18741874
">>> functools.reduce(operator.mul, [1, 2, 3], 1)\n"
18751875
"6\n"
18761876
">>> functools.reduce(operator.mul, [], 1)\n"

0 commit comments

Comments
 (0)