Skip to content

Commit 8887514

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent eaf3f24 commit 8887514

15 files changed

Lines changed: 18794 additions & 18675 deletions

File tree

c-api/import.po

Lines changed: 3 additions & 3 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-08-25 14:37+0000\n"
14+
"POT-Creation-Date: 2026-08-27 23:26+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/"
@@ -213,7 +213,7 @@ msgid ""
213213
msgstr ""
214214

215215
#: ../../c-api/import.rst:148
216-
msgid "``__cached__`` is no longer set."
216+
msgid "The ``__cached__`` attribute is no longer set."
217217
msgstr ""
218218

219219
#: ../../c-api/import.rst:154
@@ -240,7 +240,7 @@ msgid ""
240240
msgstr ""
241241

242242
#: ../../c-api/import.rst:172
243-
msgid "``__cached__`` no longer set."
243+
msgid "The ``__cached__`` attribute no longer set."
244244
msgstr ""
245245

246246
#: ../../c-api/import.rst:178

library/asyncio-task.po

Lines changed: 20 additions & 19 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-08-09 14:27+0000\n"
14+
"POT-Creation-Date: 2026-08-27 23:26+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/"
@@ -614,7 +614,7 @@ msgstr ""
614614

615615
#: ../../library/asyncio-task.rst:397 ../../library/asyncio-task.rst:565
616616
#: ../../library/asyncio-task.rst:738 ../../library/asyncio-task.rst:799
617-
#: ../../library/asyncio-task.rst:825 ../../library/asyncio-task.rst:866
617+
#: ../../library/asyncio-task.rst:825 ../../library/asyncio-task.rst:862
618618
msgid "Example::"
619619
msgstr "以下はプログラム例です::"
620620

@@ -774,7 +774,7 @@ msgid ""
774774
msgstr ""
775775

776776
#: ../../library/asyncio-task.rst:516 ../../library/asyncio-task.rst:614
777-
#: ../../library/asyncio-task.rst:713 ../../library/asyncio-task.rst:891
777+
#: ../../library/asyncio-task.rst:713 ../../library/asyncio-task.rst:887
778778
#: ../../library/asyncio-task.rst:949 ../../library/asyncio-task.rst:1010
779779
msgid "Removed the *loop* parameter."
780780
msgstr "*loop* パラメータが削除されました。"
@@ -992,7 +992,7 @@ msgstr ""
992992
":meth:`キャンセル <Task.cancel>` から :ref:`awaitable オブジェクト <asyncio-"
993993
"awaitables>` を保護します。"
994994

995-
#: ../../library/asyncio-task.rst:676 ../../library/asyncio-task.rst:846
995+
#: ../../library/asyncio-task.rst:676
996996
msgid "If *aw* is a coroutine it is automatically scheduled as a Task."
997997
msgstr ""
998998
"*aw* がコルーチンだった場合、自動的に Task としてスケジュールされます。"
@@ -1227,7 +1227,7 @@ msgstr ""
12271227
"*aw* :ref:`awaitable <asyncio-awaitables>` が、完了するかタイムアウトになるの"
12281228
"を待ちます。"
12291229

1230-
#: ../../library/asyncio-task.rst:848
1230+
#: ../../library/asyncio-task.rst:846
12311231
msgid ""
12321232
"*timeout* can either be ``None`` or a float or int number of seconds to wait "
12331233
"for. If *timeout* is ``None``, block until the future completes."
@@ -1236,20 +1236,15 @@ msgstr ""
12361236
"す。\n"
12371237
"*timeout* が ``None`` の場合、 Future が完了するまで待ちます。"
12381238

1239-
#: ../../library/asyncio-task.rst:852
1240-
msgid ""
1241-
"If a timeout occurs, it cancels the task and raises :exc:`TimeoutError`."
1239+
#: ../../library/asyncio-task.rst:850
1240+
msgid "If a timeout occurs, it cancels *aw* and raises :exc:`TimeoutError`."
12421241
msgstr ""
12431242

1244-
#: ../../library/asyncio-task.rst:855
1245-
msgid ""
1246-
"To avoid the task :meth:`cancellation <Task.cancel>`, wrap it in :func:"
1247-
"`shield`."
1243+
#: ../../library/asyncio-task.rst:852
1244+
msgid "To prevent *aw* from being cancelled, wrap it in :func:`shield`."
12481245
msgstr ""
1249-
"Task の :meth:`キャンセル <Task.cancel>` を避けるためには、 :func:`shield` の"
1250-
"中にラップしてください。"
12511246

1252-
#: ../../library/asyncio-task.rst:858
1247+
#: ../../library/asyncio-task.rst:854
12531248
msgid ""
12541249
"The function will wait until the future is actually cancelled, so the total "
12551250
"wait time may exceed the *timeout*. If an exception happens during "
@@ -1259,11 +1254,11 @@ msgstr ""
12591254
"*timeout* を超えることがあります。キャンセル中に例外が発生した場合は、その例"
12601255
"外は伝達されます。"
12611256

1262-
#: ../../library/asyncio-task.rst:862
1257+
#: ../../library/asyncio-task.rst:858
12631258
msgid "If the wait is cancelled, the future *aw* is also cancelled."
12641259
msgstr "待機が中止された場合 *aw* も中止されます。"
12651260

1266-
#: ../../library/asyncio-task.rst:868
1261+
#: ../../library/asyncio-task.rst:864
12671262
msgid ""
12681263
"async def eternity():\n"
12691264
" # Sleep for one hour\n"
@@ -1284,16 +1279,22 @@ msgid ""
12841279
"# timeout!"
12851280
msgstr ""
12861281

1287-
#: ../../library/asyncio-task.rst:886
1282+
#: ../../library/asyncio-task.rst:882
12881283
msgid ""
12891284
"When *aw* is cancelled due to a timeout, ``wait_for`` waits for *aw* to be "
12901285
"cancelled. Previously, it raised :exc:`TimeoutError` immediately."
12911286
msgstr ""
12921287

1293-
#: ../../library/asyncio-task.rst:894
1288+
#: ../../library/asyncio-task.rst:890
12941289
msgid "Raises :exc:`TimeoutError` instead of :exc:`asyncio.TimeoutError`."
12951290
msgstr ""
12961291

1292+
#: ../../library/asyncio-task.rst:893
1293+
msgid ""
1294+
"Implemented using :func:`asyncio.timeout`, a coroutine passed as *aw* is no "
1295+
"longer wrapped in a :class:`Task` when *timeout* is positive."
1296+
msgstr ""
1297+
12971298
#: ../../library/asyncio-task.rst:899
12981299
msgid "Waiting primitives"
12991300
msgstr ""

0 commit comments

Comments
 (0)