Skip to content

Commit 0192e04

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 7873166 commit 0192e04

File tree

3 files changed

+23
-24
lines changed

3 files changed

+23
-24
lines changed

library/concurrent.futures.po

Lines changed: 7 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: 2025-12-31 14:15+0000\n"
14+
"POT-Creation-Date: 2026-01-01 14:14+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -377,7 +377,7 @@ msgstr ""
377377

378378
msgid ""
379379
"The executor may replace uncaught exceptions from *initializer* with :class:"
380-
"`~concurrent.futures.interpreter.ExecutionFailed`."
380+
"`~concurrent.interpreters.ExecutionFailed`."
381381
msgstr ""
382382

383383
msgid "Other caveats from parent :class:`ThreadPoolExecutor` apply here."
@@ -393,11 +393,11 @@ msgstr ""
393393
msgid ""
394394
"When a worker's current task raises an uncaught exception, the worker always "
395395
"tries to preserve the exception as-is. If that is successful then it also "
396-
"sets the ``__cause__`` to a corresponding :class:`~concurrent.futures."
397-
"interpreter.ExecutionFailed` instance, which contains a summary of the "
398-
"original exception. In the uncommon case that the worker is not able to "
399-
"preserve the original as-is then it directly preserves the corresponding :"
400-
"class:`~concurrent.futures.interpreter.ExecutionFailed` instance instead."
396+
"sets the ``__cause__`` to a corresponding :class:`~concurrent.interpreters."
397+
"ExecutionFailed` instance, which contains a summary of the original "
398+
"exception. In the uncommon case that the worker is not able to preserve the "
399+
"original as-is then it directly preserves the corresponding :class:"
400+
"`~concurrent.interpreters.ExecutionFailed` instance instead."
401401
msgstr ""
402402

403403
msgid "ProcessPoolExecutor"
@@ -789,12 +789,6 @@ msgid ""
789789
"futures.InterpreterPoolExecutor` has failed initializing."
790790
msgstr ""
791791

792-
msgid ""
793-
"Raised from :class:`~concurrent.futures.InterpreterPoolExecutor` when the "
794-
"given initializer fails or from :meth:`~concurrent.futures.Executor.submit` "
795-
"when there's an uncaught exception from the submitted task."
796-
msgstr ""
797-
798792
msgid ""
799793
"Derived from :exc:`~concurrent.futures.BrokenExecutor` (formerly :exc:"
800794
"`RuntimeError`), this exception class is raised when one of the workers of "

tutorial/appendix.po

Lines changed: 9 additions & 10 deletions
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: 2025-12-13 14:13+0000\n"
15+
"POT-Creation-Date: 2026-01-01 14:14+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1717
"Last-Translator: Hengky Kurniawan, 2025\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -36,15 +36,14 @@ msgid ""
3636
msgstr ""
3737

3838
msgid ""
39-
"On Windows, or Unix-like systems with :mod:`curses` support, a new "
40-
"interactive shell is used by default since Python 3.13. This one supports "
41-
"color, multiline editing, history browsing, and paste mode. To disable "
42-
"color, see :ref:`using-on-controlling-color` for details. Function keys "
43-
"provide some additional functionality. :kbd:`F1` enters the interactive help "
44-
"browser :mod:`pydoc`. :kbd:`F2` allows for browsing command-line history "
45-
"with neither output nor the :term:`>>>` and :term:`...` prompts. :kbd:`F3` "
46-
"enters \"paste mode\", which makes pasting larger blocks of code easier. "
47-
"Press :kbd:`F3` to return to the regular prompt."
39+
"Since Python 3.13, a new interactive shell is used by default. This one "
40+
"supports color, multiline editing, history browsing, and paste mode. To "
41+
"disable color, see :ref:`using-on-controlling-color` for details. Function "
42+
"keys provide some additional functionality. :kbd:`F1` enters the interactive "
43+
"help browser :mod:`pydoc`. :kbd:`F2` allows for browsing command-line "
44+
"history with neither output nor the :term:`>>>` and :term:`...` prompts. :"
45+
"kbd:`F3` enters \"paste mode\", which makes pasting larger blocks of code "
46+
"easier. Press :kbd:`F3` to return to the regular prompt."
4847
msgstr ""
4948

5049
msgid ""

whatsnew/changelog.po

Lines changed: 7 additions & 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: 2025-12-31 14:15+0000\n"
14+
"POT-Creation-Date: 2026-01-01 14:14+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -48,6 +48,12 @@ msgid ""
4848
"Patch by Fatih Celik."
4949
msgstr ""
5050

51+
msgid ""
52+
":gh:`142830`: :mod:`sqlite3`: fix use-after-free crashes when the "
53+
"connection's callbacks are mutated during a callback execution. Patch by "
54+
"Bénédikt Tran."
55+
msgstr ""
56+
5157
msgid ""
5258
":gh:`143200`: :mod:`xml.etree.ElementTree`: fix use-after-free crashes in :"
5359
"meth:`~object.__getitem__` and :meth:`~object.__setitem__` methods of :class:"

0 commit comments

Comments
 (0)