Skip to content

Commit ea97338

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent f3b4613 commit ea97338

3 files changed

Lines changed: 74 additions & 28 deletions

File tree

glossary.po

Lines changed: 38 additions & 20 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-21 15:47+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/"
@@ -161,16 +161,21 @@ msgid "asynchronous generator"
161161
msgstr "pembangkit asinkron"
162162

163163
msgid ""
164-
"A function which returns an :term:`asynchronous generator iterator`. It "
165-
"looks like a coroutine function defined with :keyword:`async def` except "
166-
"that it contains :keyword:`yield` expressions for producing a series of "
167-
"values usable in an :keyword:`async for` loop."
164+
"Informally used to mean either an :term:`asynchronous generator function` or "
165+
"an :term:`asynchronous generator iterator`, depending on context. The "
166+
"formal terms :term:`asynchronous generator function` and :term:`asynchronous "
167+
"generator iterator` are uncommon in practice; \"asynchronous generator\" "
168+
"alone is almost always sufficient."
169+
msgstr ""
170+
171+
msgid "asynchronous generator function"
168172
msgstr ""
169173

170174
msgid ""
171-
"Usually refers to an asynchronous generator function, but may refer to an "
172-
"*asynchronous generator iterator* in some contexts. In cases where the "
173-
"intended meaning isn't clear, using the full terms avoids ambiguity."
175+
"A function which returns an :term:`asynchronous generator iterator`. It "
176+
"looks like a coroutine function defined with :keyword:`async def` except "
177+
"that it contains :keyword:`yield` expressions for producing a series of "
178+
"values usable in an :keyword:`async for` loop. See :pep:`525`."
174179
msgstr ""
175180

176181
msgid ""
@@ -181,7 +186,7 @@ msgstr ""
181186
msgid "asynchronous generator iterator"
182187
msgstr "iterator generator asinkron"
183188

184-
msgid "An object created by an :term:`asynchronous generator` function."
189+
msgid "An object created by an :term:`asynchronous generator function`."
185190
msgstr ""
186191

187192
msgid ""
@@ -994,29 +999,42 @@ msgid "generator"
994999
msgstr "pembangkit"
9951000

9961001
msgid ""
997-
"A function which returns a :term:`generator iterator`. It looks like a "
998-
"normal function except that it contains :keyword:`yield` expressions for "
999-
"producing a series of values usable in a for-loop or that can be retrieved "
1000-
"one at a time with the :func:`next` function."
1002+
"Informally used to mean either a :term:`generator function` or a :term:"
1003+
"`generator iterator`, depending on context. The formal terms :term:"
1004+
"`generator function` and :term:`generator iterator` are uncommon in "
1005+
"practice; \"generator\" alone is almost always sufficient."
1006+
msgstr ""
1007+
1008+
msgid "generator function"
10011009
msgstr ""
10021010

10031011
msgid ""
1004-
"Usually refers to a generator function, but may refer to a *generator "
1005-
"iterator* in some contexts. In cases where the intended meaning isn't "
1006-
"clear, using the full terms avoids ambiguity."
1012+
"A function which returns a :term:`generator` object. It looks like a normal "
1013+
"function except that it contains :keyword:`yield` expressions for producing "
1014+
"a series of values usable in a :keyword:`for`\\-loop or that can be "
1015+
"retrieved one at a time with the :func:`next` function. See :ref:`yieldexpr`."
10071016
msgstr ""
10081017

10091018
msgid "generator iterator"
10101019
msgstr ""
10111020

1012-
msgid "An object created by a :term:`generator` function."
1021+
msgid ""
1022+
"An object created by a :term:`generator function` or a :term:`generator "
1023+
"expression`."
10131024
msgstr ""
10141025

10151026
msgid ""
10161027
"Each :keyword:`yield` temporarily suspends processing, remembering the "
1017-
"execution state (including local variables and pending try-statements). "
1018-
"When the *generator iterator* resumes, it picks up where it left off (in "
1019-
"contrast to functions which start fresh on every invocation)."
1028+
"execution state (including local variables and pending try-statements). When "
1029+
"the *generator iterator* resumes, it picks up where it left off (in contrast "
1030+
"to functions which start fresh on every invocation)."
1031+
msgstr ""
1032+
1033+
msgid ""
1034+
"Generator iterators also implement the :meth:`~generator.send` method to "
1035+
"send a value into the suspended generator, and the :meth:`~generator.throw` "
1036+
"method to raise an exception at the point where the generator was paused. "
1037+
"See :ref:`generator-methods`."
10201038
msgstr ""
10211039

10221040
msgid "generator expression"

library/dialog.po

Lines changed: 24 additions & 7 deletions
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-06-19 16:29+0000\n"
11+
"POT-Creation-Date: 2026-06-21 15:47+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1313
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
1414
"id/)\n"
@@ -33,11 +33,27 @@ msgid ""
3333
msgstr ""
3434

3535
msgid ""
36-
"The above three functions provide dialogs that prompt the user to enter a "
37-
"value of the desired type."
36+
"Prompt the user to enter a value of the desired type and return it, or "
37+
"``None`` if the dialog is cancelled."
3838
msgstr ""
3939

40-
msgid "The base class for custom dialogs."
40+
msgid ""
41+
"*title* is the dialog title and *prompt* the message shown above the entry. "
42+
"*initialvalue* is the value initially placed in the entry. *parent* is the "
43+
"window over which the dialog is shown. :func:`askinteger` and :func:"
44+
"`askfloat` also accept *minvalue* and *maxvalue*, which bound the accepted "
45+
"value. :func:`askstring` also accepts *show*, a character used to mask the "
46+
"entered text, for example ``'*'`` to hide a password."
47+
msgstr ""
48+
49+
msgid ""
50+
"The base class for custom dialogs. Instantiating it shows the dialog modally "
51+
"and returns once the user closes it; the entered value is then available in "
52+
"the :attr:`!result` attribute."
53+
msgstr ""
54+
55+
msgid ""
56+
"The value produced by :meth:`apply`, or ``None`` if the dialog was cancelled."
4157
msgstr ""
4258

4359
msgid ""
@@ -58,9 +74,10 @@ msgid ""
5874
msgstr ""
5975

6076
msgid ""
61-
"Process the data entered by the user. Called after :meth:`validate` succeeds "
62-
"and just before the dialog is destroyed. The default implementation does "
63-
"nothing; override it to act on or store the result."
77+
"Process the data entered by the user, for example by storing it in the :attr:"
78+
"`!result` attribute. Called after :meth:`validate` succeeds and just before "
79+
"the dialog is destroyed. The default implementation does nothing; override "
80+
"it to act on or store the result."
6481
msgstr ""
6582

6683
msgid ""

whatsnew/changelog.po

Lines changed: 12 additions & 1 deletion
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-19 16:29+0000\n"
15+
"POT-Creation-Date: 2026-06-21 15:47+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1717
"Last-Translator: python-doc bot, 2026\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -47,6 +47,11 @@ msgstr ""
4747
msgid ":gh:`151159`: Updated bundled version of OpenSSL to 3.5.7."
4848
msgstr ""
4949

50+
msgid ""
51+
":gh:`150836`: Make installed tkinter work with Tcl/Tk 9 builds that embed "
52+
"the Tk script library in the Tk DLL on Windows."
53+
msgstr ""
54+
5055
msgid "Tests"
5156
msgstr "Pengujian"
5257

@@ -94,6 +99,12 @@ msgstr ""
9499
msgid "Library"
95100
msgstr "Pustaka"
96101

102+
msgid ""
103+
":gh:`151770`: Fix :meth:`datetime.datetime.fromisoformat` raising :exc:"
104+
"`AssertionError` instead of :exc:`ValueError` for an out-of-range month "
105+
"combined with a ``24:00`` time."
106+
msgstr ""
107+
97108
msgid ""
98109
":gh:`151695`: Fix a use-after-free in the :mod:`curses` module. The "
99110
"encoding of the initial screen, used by :func:`curses.unctrl` and :func:"

0 commit comments

Comments
 (0)