Skip to content

Commit f6911eb

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 437a1d3 commit f6911eb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+178
-57
lines changed

c-api/datetime.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-23 14:50+0000\n"
14+
"POT-Creation-Date: 2026-04-11 14:31+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

c-api/dict.po

Lines changed: 46 additions & 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-04-03 14:38+0000\n"
15+
"POT-Creation-Date: 2026-04-13 15:10+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Hengky Kurniawan, 2025\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -72,6 +72,12 @@ msgid ""
7272
"is equivalent to the Python expression ``key in p``."
7373
msgstr ""
7474

75+
msgid ""
76+
"The operation is atomic on :term:`free threading <free-threaded build>` when "
77+
"*key* is :class:`str`, :class:`int`, :class:`float`, :class:`bool` or :class:"
78+
"`bytes`."
79+
msgstr ""
80+
7581
msgid ""
7682
"This is the same as :c:func:`PyDict_Contains`, but *key* is specified as a :"
7783
"c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
@@ -138,6 +144,12 @@ msgid ""
138144
"`PyDict_GetItemWithError` function instead."
139145
msgstr ""
140146

147+
msgid ""
148+
"In the :term:`free-threaded build`, the returned :term:`borrowed reference` "
149+
"may become invalid if another thread modifies the dictionary concurrently. "
150+
"Prefer :c:func:`PyDict_GetItemRef`, which returns a :term:`strong reference`."
151+
msgstr ""
152+
141153
msgid ""
142154
"Calling this API without an :term:`attached thread state` had been allowed "
143155
"for historical reason. It is no longer allowed."
@@ -162,6 +174,13 @@ msgid ""
162174
"function with your own :c:func:`PyUnicode_FromString` *key* instead."
163175
msgstr ""
164176

177+
msgid ""
178+
"In the :term:`free-threaded build`, the returned :term:`borrowed reference` "
179+
"may become invalid if another thread modifies the dictionary concurrently. "
180+
"Prefer :c:func:`PyDict_GetItemStringRef`, which returns a :term:`strong "
181+
"reference`."
182+
msgstr ""
183+
165184
msgid ""
166185
"Similar to :c:func:`PyDict_GetItemRef`, but *key* is specified as a :c:expr:"
167186
"`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`."
@@ -176,6 +195,13 @@ msgid ""
176195
"the insertion."
177196
msgstr ""
178197

198+
msgid ""
199+
"In the :term:`free-threaded build`, the returned :term:`borrowed reference` "
200+
"may become invalid if another thread modifies the dictionary concurrently. "
201+
"Prefer :c:func:`PyDict_SetDefaultRef`, which returns a :term:`strong "
202+
"reference`."
203+
msgstr ""
204+
179205
msgid ""
180206
"Inserts *default_value* into the dictionary *p* with a key of *key* if the "
181207
"key is not already present in the dictionary. If *result* is not ``NULL``, "
@@ -347,6 +373,13 @@ msgid ""
347373
"or ``-1`` if an exception was raised."
348374
msgstr ""
349375

376+
msgid ""
377+
"In the :term:`free-threaded build`, when *b* is a :class:`dict` (with the "
378+
"standard iterator), both *a* and *b* are locked for the duration of the "
379+
"operation. When *b* is a non-dict mapping, only *a* is locked; *b* may be "
380+
"concurrently modified by another thread."
381+
msgstr ""
382+
350383
msgid ""
351384
"This is the same as ``PyDict_Merge(a, b, 1)`` in C, and is similar to ``a."
352385
"update(b)`` in Python except that :c:func:`PyDict_Update` doesn't fall back "
@@ -374,13 +407,25 @@ msgstr ""
374407
" if override or key not in a:\n"
375408
" a[key] = value"
376409

410+
msgid ""
411+
"In the :term:`free-threaded <free threading>` build, only *a* is locked. The "
412+
"iteration over *seq2* is not synchronized; *seq2* may be concurrently "
413+
"modified by another thread."
414+
msgstr ""
415+
377416
msgid ""
378417
"Register *callback* as a dictionary watcher. Return a non-negative integer "
379418
"id which must be passed to future calls to :c:func:`PyDict_Watch`. In case "
380419
"of error (e.g. no more watcher IDs available), return ``-1`` and set an "
381420
"exception."
382421
msgstr ""
383422

423+
msgid ""
424+
"This function is not internally synchronized. In the :term:`free-threaded "
425+
"<free threading>` build, callers should ensure no concurrent calls to :c:"
426+
"func:`PyDict_AddWatcher` or :c:func:`PyDict_ClearWatcher` are in progress."
427+
msgstr ""
428+
384429
msgid ""
385430
"Clear watcher identified by *watcher_id* previously returned from :c:func:"
386431
"`PyDict_AddWatcher`. Return ``0`` on success, ``-1`` on error (e.g. if the "

c-api/file.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-23 14:50+0000\n"
14+
"POT-Creation-Date: 2026-04-11 14:31+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

c-api/lifecycle.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-23 14:50+0000\n"
14+
"POT-Creation-Date: 2026-04-11 14:31+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

c-api/object.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-23 14:50+0000\n"
15+
"POT-Creation-Date: 2026-04-11 14:31+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Hengky Kurniawan, 2025\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

c-api/set.po

Lines changed: 18 additions & 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-04-05 14:30+0000\n"
15+
"POT-Creation-Date: 2026-04-13 15:10+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Hengky Kurniawan, 2025\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -103,6 +103,11 @@ msgid ""
103103
"(``c=set(s)``)."
104104
msgstr ""
105105

106+
msgid ""
107+
"The operation is atomic on :term:`free threading <free-threaded build>` when "
108+
"*iterable* is a :class:`set`, :class:`frozenset` or :class:`dict`."
109+
msgstr ""
110+
106111
msgid ""
107112
"Return a new :class:`frozenset` containing objects returned by the "
108113
"*iterable*. The *iterable* may be ``NULL`` to create a new empty frozenset. "
@@ -133,6 +138,12 @@ msgid ""
133138
"instance of a subtype."
134139
msgstr ""
135140

141+
msgid ""
142+
"The operation is atomic on :term:`free threading <free-threaded build>` when "
143+
"*key* is :class:`str`, :class:`int`, :class:`float`, :class:`bool` or :class:"
144+
"`bytes`."
145+
msgstr ""
146+
136147
msgid ""
137148
"Add *key* to a :class:`set` instance. Also works with :class:`frozenset` "
138149
"instances (like :c:func:`PyTuple_SetItem` it can be used to fill in the "
@@ -170,6 +181,12 @@ msgid ""
170181
"`set` or its subtype."
171182
msgstr ""
172183

184+
msgid ""
185+
"In the :term:`free-threaded build`, the set is emptied before its entries "
186+
"are cleared, so other threads will observe an empty set rather than "
187+
"intermediate states."
188+
msgstr ""
189+
173190
msgid "Deprecated API"
174191
msgstr ""
175192

howto/logging-cookbook.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-23 14:50+0000\n"
14+
"POT-Creation-Date: 2026-04-11 14:31+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

library/asyncio-protocol.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-23 14:50+0000\n"
14+
"POT-Creation-Date: 2026-04-11 14:31+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

library/asyncio-subprocess.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-23 14:50+0000\n"
14+
"POT-Creation-Date: 2026-04-11 14:31+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

library/asyncio-task.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-23 14:50+0000\n"
14+
"POT-Creation-Date: 2026-04-11 14:31+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

0 commit comments

Comments
 (0)