Skip to content

Commit 4a08a43

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 387d7c2 commit 4a08a43

4 files changed

Lines changed: 66 additions & 25 deletions

File tree

library/curses.ascii.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-06-02 00:16+0000\n"
14+
"POT-Creation-Date: 2026-06-13 15:28+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/"
@@ -181,7 +181,7 @@ msgid ""
181181
"equivalent to ``c in string.digits``."
182182
msgstr ""
183183

184-
msgid "Checks for ASCII any printable character except space."
184+
msgid "Checks for any ASCII printable character except space."
185185
msgstr ""
186186

187187
msgid "Checks for an ASCII lower-case character."
@@ -191,7 +191,7 @@ msgid "Checks for any ASCII printable character including space."
191191
msgstr ""
192192

193193
msgid ""
194-
"Checks for any printable ASCII character which is not a space or an "
194+
"Checks for any ASCII printable character which is not a space or an "
195195
"alphanumeric character."
196196
msgstr ""
197197

library/dataclasses.po

Lines changed: 25 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-06-02 00:16+0000\n"
14+
"POT-Creation-Date: 2026-06-13 15:28+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/"
@@ -147,15 +147,36 @@ msgstr ""
147147

148148
msgid ""
149149
"*eq*: If true (the default), an :meth:`~object.__eq__` method will be "
150-
"generated. This method compares the class as if it were a tuple of its "
151-
"fields, in order. Both instances in the comparison must be of the identical "
152-
"type."
150+
"generated."
151+
msgstr ""
152+
153+
msgid ""
154+
"This method compares the class by comparing each field in order. Both "
155+
"instances in the comparison must be of the identical type."
153156
msgstr ""
154157

155158
msgid ""
156159
"If the class already defines :meth:`!__eq__`, this parameter is ignored."
157160
msgstr ""
158161

162+
msgid ""
163+
"The generated ``__eq__`` method now compares each field individually (for "
164+
"example, ``self.a == other.a and self.b == other.b``), rather than comparing "
165+
"tuples of fields as in previous versions."
166+
msgstr ""
167+
168+
msgid ""
169+
"This change makes the comparison faster but it may alter results in cases "
170+
"where attributes compare equal by identity but not by value (such as "
171+
"``float('nan')``)."
172+
msgstr ""
173+
174+
msgid ""
175+
"In Python 3.12 and earlier, the comparison was performed by creating tuples "
176+
"of the fields and comparing them (for example, ``(self.a, self.b) == (other."
177+
"a, other.b)``)."
178+
msgstr ""
179+
159180
msgid ""
160181
"*order*: If true (the default is ``False``), :meth:`~object.__lt__`, :meth:"
161182
"`~object.__le__`, :meth:`~object.__gt__`, and :meth:`~object.__ge__` methods "

library/functions.po

Lines changed: 7 additions & 17 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-03 18:19+0000\n"
15+
"POT-Creation-Date: 2026-06-13 15:28+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1717
"Last-Translator: Hengky Kurniawan, 2025\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -831,11 +831,8 @@ msgstr ""
831831

832832
msgid ""
833833
"Create a new dictionary. The :class:`dict` object is the dictionary class. "
834-
"See :class:`dict` and :ref:`typesmapping` for documentation about this class."
834+
"See also :ref:`typesmapping` for documentation about this class."
835835
msgstr ""
836-
"Buat *dictionary* baru. Objek :class:`dict` adalah kelas kamus *dictionary*. "
837-
"Lihat :class:`dict` dan :ref:`typesmapping` untuk dokumentasi tentang kelas "
838-
"ini."
839836

840837
msgid ""
841838
"For other containers see the built-in :class:`frozendict`, :class:`list`, :"
@@ -1215,8 +1212,7 @@ msgstr ""
12151212

12161213
msgid ""
12171214
"Create a new frozen dictionary. The :class:`frozendict` object is a built-"
1218-
"in class. See :class:`frozendict` and :ref:`typesmapping` for documentation "
1219-
"about this class."
1215+
"in class. See also :ref:`typesmapping` for documentation about this class."
12201216
msgstr ""
12211217

12221218
msgid ""
@@ -1226,12 +1222,9 @@ msgstr ""
12261222

12271223
msgid ""
12281224
"Return a new :class:`frozenset` object, optionally with elements taken from "
1229-
"*iterable*. ``frozenset`` is a built-in class. See :class:`frozenset` and :"
1230-
"ref:`types-set` for documentation about this class."
1225+
"*iterable*. :class:`frozenset` is a built-in class. See also :ref:`types-"
1226+
"set` for documentation about this class."
12311227
msgstr ""
1232-
"Kembalikan objek baru :class:`frozenset`, secara opsional dengan elemen yang "
1233-
"diambil dari *iterable*. ``frozenset`` adalah kelas bawaan. Lihat :class:"
1234-
"`frozenset` dan :ref:`types-set` untuk dokumentasi tentang kelas ini."
12351228

12361229
msgid ""
12371230
"For other containers see the built-in :class:`set`, :class:`list`, :class:"
@@ -2407,12 +2400,9 @@ msgstr ""
24072400

24082401
msgid ""
24092402
"Return a new :class:`set` object, optionally with elements taken from "
2410-
"*iterable*. ``set`` is a built-in class. See :class:`set` and :ref:`types-"
2411-
"set` for documentation about this class."
2403+
"*iterable*. :class:`set` is a built-in class. See also :ref:`types-set` "
2404+
"for documentation about this class."
24122405
msgstr ""
2413-
"Kembalikan objek baru :class:`set`, secara opsional dengan elemen yang "
2414-
"diambil dari *iterable*. ``set`` adalah kelas bawaan. Lihat :class:`set` "
2415-
"dan :ref:`types-set` untuk dokumentasi tentang kelas ini."
24162406

24172407
msgid ""
24182408
"For other containers see the built-in :class:`frozenset`, :class:`list`, :"

whatsnew/changelog.po

Lines changed: 31 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-11 17:33+0000\n"
15+
"POT-Creation-Date: 2026-06-13 15:28+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/"
@@ -77,6 +77,14 @@ msgstr ""
7777
msgid "Library"
7878
msgstr "Pustaka"
7979

80+
msgid ""
81+
":gh:`151126`: Fix crash on unset :exc:`MemoryError` on allocation failure "
82+
"in :func:`ctypes.get_errno`."
83+
msgstr ""
84+
85+
msgid ":gh:`151337`: Avoid possible memory leak in ``tkinter.c`` on Windows."
86+
msgstr ""
87+
8088
msgid ""
8189
":gh:`151126`: Fix a crash when :exc:`MemoryError` in :func:`!os."
8290
"_path_splitroot` was not set properly."
@@ -174,6 +182,16 @@ msgid ""
174182
"`str` instead of :class:`bytes`. Patch by Florian Best."
175183
msgstr ""
176184

185+
msgid ""
186+
":gh:`101267`: When a worker process terminates unexpectedly, :class:"
187+
"`concurrent.futures.ProcessPoolExecutor` now sets a separate :exc:"
188+
"`~concurrent.futures.process.BrokenProcessPool` exception on each pending "
189+
"future instead of sharing a single instance among them all. Sharing one "
190+
"exception produced malformed tracebacks: each :meth:`Future.result() "
191+
"<concurrent.futures.Future.result>` call re-raised the same object, "
192+
"appending another copy of the traceback to it."
193+
msgstr ""
194+
177195
msgid "IDLE"
178196
msgstr "IDLE"
179197

@@ -197,6 +215,13 @@ msgstr ""
197215
msgid "Core and Builtins"
198216
msgstr "Inti dan Bawaan"
199217

218+
msgid ""
219+
":gh:`151297`: Fix an invalid pointer dereference that could occur when "
220+
"calling :c:func:`PyObject_Realloc` with a NULL pointer in :term:`free-"
221+
"threaded builds <free-threaded build>` or with :envvar:`PYTHONMALLOC` set to "
222+
"``mimalloc``."
223+
msgstr ""
224+
200225
msgid ""
201226
":gh:`151253`: If ``import encodings`` (first import) fails at Python "
202227
"startup, dump the Python path configuration to help users debugging their "
@@ -222,6 +247,11 @@ msgstr ""
222247
msgid "Now these places raise proper :exc:`MemoryError` errors."
223248
msgstr ""
224249

250+
msgid ""
251+
":gh:`151065`: Fix memory leak when using the :ref:`mimalloc memory allocator "
252+
"<mimalloc>`."
253+
msgstr ""
254+
225255
msgid ""
226256
":gh:`150988`: Fix a reference leak in :exc:`OSError` when attributes are set "
227257
"before ``super().__init__()``."

0 commit comments

Comments
 (0)