Skip to content

Commit 34b6498

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 072e3ba commit 34b6498

29 files changed

Lines changed: 143 additions & 114 deletions

c-api/typeobj.po

Lines changed: 5 additions & 5 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-29 17:28+0000\n"
14+
"POT-Creation-Date: 2026-09-11 17:24+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/"
@@ -2373,10 +2373,10 @@ msgid "PyObject *tp_iternext(PyObject *self);"
23732373
msgstr ""
23742374

23752375
msgid ""
2376-
"When the iterator is exhausted, it must return ``NULL``; a :exc:"
2377-
"`StopIteration` exception may or may not be set. When another error occurs, "
2378-
"it must return ``NULL`` too. Its presence signals that the instances of "
2379-
"this type are iterators."
2376+
"When the iterator is :term:`exhausted`, the ``tp_iternext`` function must "
2377+
"return ``NULL``; a :exc:`StopIteration` exception may or may not be set. "
2378+
"When another error occurs, it must return ``NULL`` too. The presence of "
2379+
"``tp_iternext`` signals that the instances of this type are iterators."
23802380
msgstr ""
23812381

23822382
msgid ""

deprecations/index.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.15\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-08-21 14:26+0000\n"
14+
"POT-Creation-Date: 2026-09-09 17:24+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/"

deprecations/pending-removal-in-3.17.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.15\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-08-21 14:26+0000\n"
14+
"POT-Creation-Date: 2026-09-09 17:24+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/"

glossary.po

Lines changed: 22 additions & 11 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-08-25 14:37+0000\n"
15+
"POT-Creation-Date: 2026-09-11 17:24+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/"
@@ -776,6 +776,16 @@ msgid ""
776776
"statement."
777777
msgstr ""
778778

779+
msgid "exhausted"
780+
msgstr ""
781+
782+
msgid ""
783+
"An :term:`iterator` that has produced all of its values is said to be :dfn:"
784+
"`exhausted`. Further attempts to get the next value (for example, calls to :"
785+
"func:`next`) raise :exc:`StopIteration` (or :exc:`StopAsyncIteration` in the "
786+
"case of an :term:`asynchronous iterator`)."
787+
msgstr ""
788+
779789
msgid "expression"
780790
msgstr "ekspresi"
781791

@@ -1327,16 +1337,17 @@ msgid ""
13271337
"meth:`~iterator.__next__` method (or passing it to the built-in function :"
13281338
"func:`next`) return successive items in the stream. When no more data are "
13291339
"available a :exc:`StopIteration` exception is raised instead. At this "
1330-
"point, the iterator object is exhausted and any further calls to its :meth:`!"
1331-
"__next__` method just raise :exc:`StopIteration` again. Iterators are "
1332-
"required to have an :meth:`~iterator.__iter__` method that returns the "
1333-
"iterator object itself so every iterator is also iterable and may be used in "
1334-
"most places where other iterables are accepted. One notable exception is "
1335-
"code which attempts multiple iteration passes. A container object (such as "
1336-
"a :class:`list`) produces a fresh new iterator each time you pass it to the :"
1337-
"func:`iter` function or use it in a :keyword:`for` loop. Attempting this "
1338-
"with an iterator will just return the same exhausted iterator object used in "
1339-
"the previous iteration pass, making it appear like an empty container."
1340+
"point, the iterator object is :term:`exhausted` and any further calls to "
1341+
"its :meth:`!__next__` method just raise :exc:`StopIteration` again. "
1342+
"Iterators are required to have an :meth:`~iterator.__iter__` method that "
1343+
"returns the iterator object itself so every iterator is also iterable and "
1344+
"may be used in most places where other iterables are accepted. One notable "
1345+
"exception is code which attempts multiple iteration passes. A container "
1346+
"object (such as a :class:`list`) produces a fresh new iterator each time you "
1347+
"pass it to the :func:`iter` function or use it in a :keyword:`for` loop. "
1348+
"Attempting this with an iterator will just return the same exhausted "
1349+
"iterator object used in the previous iteration pass, making it appear like "
1350+
"an empty container."
13401351
msgstr ""
13411352

13421353
msgid "More information can be found in :ref:`typeiter`."

howto/enum.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.15\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-08-21 14:26+0000\n"
14+
"POT-Creation-Date: 2026-09-09 17:24+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/"

howto/functional.po

Lines changed: 10 additions & 10 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-09-01 17:31+0000\n"
14+
"POT-Creation-Date: 2026-09-11 17:24+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/"
@@ -848,10 +848,10 @@ msgid ""
848848
msgstr ""
849849

850850
msgid ""
851-
"It doesn't construct an in-memory list and exhaust all the input iterators "
852-
"before returning; instead tuples are constructed and returned only if "
853-
"they're requested. (The technical term for this behaviour is `lazy "
854-
"evaluation <https://en.wikipedia.org/wiki/Lazy_evaluation>`__.)"
851+
"It doesn't construct an in-memory list and :term:`exhaust <exhausted>` all "
852+
"the input iterators before returning; instead tuples are constructed and "
853+
"returned only if they're requested. (The technical term for this behaviour "
854+
"is `lazy evaluation <https://en.wikipedia.org/wiki/Lazy_evaluation>`__.)"
855855
msgstr ""
856856

857857
msgid ""
@@ -943,7 +943,7 @@ msgid ""
943943
":func:`itertools.chain(iterA, iterB, ...) <itertools.chain>` takes an "
944944
"arbitrary number of iterables as input, and returns all the elements of the "
945945
"first iterator, then all the elements of the second, and so on, until all of "
946-
"the iterables have been exhausted. ::"
946+
"the iterables have been :term:`exhausted`. ::"
947947
msgstr ""
948948

949949
msgid ""
@@ -1069,7 +1069,7 @@ msgid ""
10691069
":func:`itertools.compress(data, selectors) <itertools.compress>` takes two "
10701070
"iterators and returns only those elements of *data* for which the "
10711071
"corresponding element of *selectors* is true, stopping whenever either one "
1072-
"is exhausted::"
1072+
"is :term:`exhausted`::"
10731073
msgstr ""
10741074

10751075
msgid ""
@@ -1256,9 +1256,9 @@ msgid ""
12561256
"reduce` takes the first two elements A and B returned by the iterator and "
12571257
"calculates ``func(A, B)``. It then requests the third element, C, "
12581258
"calculates ``func(func(A, B), C)``, combines this result with the fourth "
1259-
"element returned, and continues until the iterable is exhausted. If the "
1260-
"iterable returns no values at all, a :exc:`TypeError` exception is raised. "
1261-
"If the initial value is supplied, it's used as a starting point and "
1259+
"element returned, and continues until the iterable is :term:`exhausted`. If "
1260+
"the iterable returns no values at all, a :exc:`TypeError` exception is "
1261+
"raised. If the initial value is supplied, it's used as a starting point and "
12621262
"``func(initial_value, A)`` is the first calculation. ::"
12631263
msgstr ""
12641264

library/asyncio-graph.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.15\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-08-21 14:26+0000\n"
11+
"POT-Creation-Date: 2026-09-11 17:24+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1313
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
1414
"id/)\n"

library/asyncio-tools.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.15\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-08-21 14:26+0000\n"
11+
"POT-Creation-Date: 2026-09-11 17:24+0000\n"
1212
"PO-Revision-Date: 2026-07-11 14:48+0000\n"
1313
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
1414
"id/)\n"

library/collections.po

Lines changed: 4 additions & 4 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-09-09 17:24+0000\n"
14+
"POT-Creation-Date: 2026-09-11 17:24+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/"
@@ -780,9 +780,9 @@ msgid ""
780780
"A `round-robin scheduler <https://en.wikipedia.org/wiki/Round-"
781781
"robin_scheduling>`_ can be implemented with input iterators stored in a :"
782782
"class:`deque`. Values are yielded from the active iterator in position "
783-
"zero. If that iterator is exhausted, it can be removed with :meth:`~deque."
784-
"popleft`; otherwise, it can be cycled back to the end with the :meth:`~deque."
785-
"rotate` method::"
783+
"zero. If that iterator is :term:`exhausted`, it can be removed with :meth:"
784+
"`~deque.popleft`; otherwise, it can be cycled back to the end with the :meth:"
785+
"`~deque.rotate` method::"
786786
msgstr ""
787787

788788
msgid ""

library/colorsys.po

Lines changed: 4 additions & 4 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-23 14:16+0000\n"
14+
"POT-Creation-Date: 2026-09-11 17:24+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/"
@@ -39,9 +39,9 @@ msgid ""
3939
msgstr ""
4040

4141
msgid ""
42-
"More information about color spaces can be found at https://poynton.ca/"
43-
"ColorFAQ.html and https://www.cambridgeincolour.com/tutorials/color-spaces."
44-
"htm."
42+
"More information about color spaces can be found at https://www.poynton.ca/"
43+
"pdf/ColourFAQ.pdf and https://www.cambridgeincolour.com/tutorials/color-"
44+
"spaces.htm."
4545
msgstr ""
4646

4747
msgid "The :mod:`!colorsys` module defines the following functions:"

0 commit comments

Comments
 (0)