Skip to content

Commit b7ebf00

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 0c57038 commit b7ebf00

File tree

5 files changed

+62
-30
lines changed

5 files changed

+62
-30
lines changed

library/annotationlib.po

Lines changed: 20 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-10-05 14:11+0000\n"
14+
"POT-Creation-Date: 2025-10-23 14:15+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/"
@@ -429,12 +429,31 @@ msgid ""
429429
"__annotations__` is tried again and any error from accessing it is re-raised."
430430
msgstr ""
431431

432+
msgid ""
433+
"When calling :attr:`!object.__annotate__` it is first called with :attr:"
434+
"`~Format.FORWARDREF`. If this is not implemented, it will then check if :"
435+
"attr:`~Format.VALUE_WITH_FAKE_GLOBALS` is supported and use that in the fake "
436+
"globals environment. If neither of these formats are supported, it will fall "
437+
"back to using :attr:`~Format.VALUE`. If :attr:`~Format.VALUE` fails, the "
438+
"error from this call will be raised."
439+
msgstr ""
440+
432441
msgid ""
433442
"STRING: If :attr:`!object.__annotate__` exists, it is called first; "
434443
"otherwise, :attr:`!object.__annotations__` is used and stringified using :"
435444
"func:`annotations_to_string`."
436445
msgstr ""
437446

447+
msgid ""
448+
"When calling :attr:`!object.__annotate__` it is first called with :attr:"
449+
"`~Format.STRING`. If this is not implemented, it will then check if :attr:"
450+
"`~Format.VALUE_WITH_FAKE_GLOBALS` is supported and use that in the fake "
451+
"globals environment. If neither of these formats are supported, it will fall "
452+
"back to using :attr:`~Format.VALUE` with the result converted using :func:"
453+
"`annotations_to_string`. If :attr:`~Format.VALUE` fails, the error from this "
454+
"call will be raised."
455+
msgstr ""
456+
438457
msgid ""
439458
"Returns a dict. :func:`!get_annotations` returns a new dict every time it's "
440459
"called; calling it twice on the same object will return two different but "

library/enum.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: 2025-10-03 14:13+0000\n"
15+
"POT-Creation-Date: 2025-10-23 14:15+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1717
"Last-Translator: Transifex Bot <>, 2025\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

library/hashlib.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: 2025-10-03 14:13+0000\n"
14+
"POT-Creation-Date: 2025-10-23 14:15+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/"

library/zlib.po

Lines changed: 22 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.14\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2025-10-11 14:13+0000\n"
11+
"POT-Creation-Date: 2025-10-23 14:15+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1313
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
1414
"id/)\n"
@@ -64,19 +64,17 @@ msgstr ""
6464
msgid ""
6565
"Compresses the bytes in *data*, returning a bytes object containing "
6666
"compressed data. *level* is an integer from ``0`` to ``9`` or ``-1`` "
67-
"controlling the level of compression; ``1`` (Z_BEST_SPEED) is fastest and "
68-
"produces the least compression, ``9`` (Z_BEST_COMPRESSION) is slowest and "
69-
"produces the most. ``0`` (Z_NO_COMPRESSION) is no compression. The default "
70-
"value is ``-1`` (Z_DEFAULT_COMPRESSION). Z_DEFAULT_COMPRESSION represents a "
71-
"default compromise between speed and compression (currently equivalent to "
72-
"level 6)."
67+
"controlling the level of compression; See :const:`Z_BEST_SPEED` (``1``), :"
68+
"const:`Z_BEST_COMPRESSION` (``9``), :const:`Z_NO_COMPRESSION` (``0``), and "
69+
"the default, :const:`Z_DEFAULT_COMPRESSION` (``-1``) for more information "
70+
"about these values."
7371
msgstr ""
7472

7573
msgid ""
7674
"The *wbits* argument controls the size of the history buffer (or the "
7775
"\"window size\") used when compressing data, and whether a header and "
7876
"trailer is included in the output. It can take several ranges of values, "
79-
"defaulting to ``15`` (MAX_WBITS):"
77+
"defaulting to ``15`` (:const:`MAX_WBITS`):"
8078
msgstr ""
8179

8280
msgid ""
@@ -115,12 +113,9 @@ msgstr ""
115113

116114
msgid ""
117115
"*level* is the compression level -- an integer from ``0`` to ``9`` or "
118-
"``-1``. A value of ``1`` (Z_BEST_SPEED) is fastest and produces the least "
119-
"compression, while a value of ``9`` (Z_BEST_COMPRESSION) is slowest and "
120-
"produces the most. ``0`` (Z_NO_COMPRESSION) is no compression. The default "
121-
"value is ``-1`` (Z_DEFAULT_COMPRESSION). Z_DEFAULT_COMPRESSION represents a "
122-
"default compromise between speed and compression (currently equivalent to "
123-
"level 6)."
116+
"``-1``. See :const:`Z_BEST_SPEED` (``1``), :const:`Z_BEST_COMPRESSION` "
117+
"(``9``), :const:`Z_NO_COMPRESSION` (``0``), and the default, :const:"
118+
"`Z_DEFAULT_COMPRESSION` (``-1``) for more information about these values."
124119
msgstr ""
125120

126121
msgid ""
@@ -143,7 +138,7 @@ msgstr ""
143138
msgid ""
144139
"*strategy* is used to tune the compression algorithm. Possible values are :"
145140
"const:`Z_DEFAULT_STRATEGY`, :const:`Z_FILTERED`, :const:`Z_HUFFMAN_ONLY`, :"
146-
"const:`Z_RLE` (zlib 1.2.0.1) and :const:`Z_FIXED` (zlib 1.2.2.2)."
141+
"const:`Z_RLE` and :const:`Z_FIXED`."
147142
msgstr ""
148143

149144
msgid ""
@@ -264,13 +259,12 @@ msgid ""
264259
"All pending input is processed, and a bytes object containing the remaining "
265260
"compressed output is returned. *mode* can be selected from the constants :"
266261
"const:`Z_NO_FLUSH`, :const:`Z_PARTIAL_FLUSH`, :const:`Z_SYNC_FLUSH`, :const:"
267-
"`Z_FULL_FLUSH`, :const:`Z_BLOCK` (zlib 1.2.3.4), or :const:`Z_FINISH`, "
268-
"defaulting to :const:`Z_FINISH`. Except :const:`Z_FINISH`, all constants "
269-
"allow compressing further bytestrings of data, while :const:`Z_FINISH` "
270-
"finishes the compressed stream and prevents compressing any more data. "
271-
"After calling :meth:`flush` with *mode* set to :const:`Z_FINISH`, the :meth:"
272-
"`compress` method cannot be called again; the only realistic action is to "
273-
"delete the object."
262+
"`Z_FULL_FLUSH`, :const:`Z_BLOCK`, or :const:`Z_FINISH`, defaulting to :const:"
263+
"`Z_FINISH`. Except :const:`Z_FINISH`, all constants allow compressing "
264+
"further bytestrings of data, while :const:`Z_FINISH` finishes the compressed "
265+
"stream and prevents compressing any more data. After calling :meth:`flush` "
266+
"with *mode* set to :const:`Z_FINISH`, the :meth:`compress` method cannot be "
267+
"called again; the only realistic action is to delete the object."
274268
msgstr ""
275269

276270
msgid ""
@@ -373,16 +367,18 @@ msgstr ""
373367
msgid "The default buffer size for decompression operations."
374368
msgstr ""
375369

376-
msgid "Compression level ``0``."
370+
msgid "Compression level ``0``; no compression."
377371
msgstr ""
378372

379-
msgid "Compression level ``1``."
373+
msgid "Compression level ``1``; fastest and produces the least compression."
380374
msgstr ""
381375

382-
msgid "Compression level ``9``."
376+
msgid "Compression level ``9``; slowest and produces the most compression."
383377
msgstr ""
384378

385-
msgid "Default compression level (``-1``)."
379+
msgid ""
380+
"Default compression level (``-1``); a compromise between speed and "
381+
"compression. Currently equivalent to compression level ``6``."
386382
msgstr ""
387383

388384
msgid "Default compression strategy, for normal data."

whatsnew/changelog.po

Lines changed: 18 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-10-21 14:16+0000\n"
14+
"POT-Creation-Date: 2025-10-23 14:15+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/"
@@ -84,6 +84,11 @@ msgstr ""
8484
msgid "Library"
8585
msgstr "Pustaka"
8686

87+
msgid ""
88+
":gh:`140474`: Fix memory leak in :class:`array.array` when creating arrays "
89+
"from an empty :class:`str` and the ``u`` type code."
90+
msgstr ""
91+
8792
msgid ""
8893
":gh:`140272`: Fix memory leak in the :meth:`!clear` method of the :mod:`dbm."
8994
"gnu` database."
@@ -223,6 +228,18 @@ msgid ""
223228
"types."
224229
msgstr ""
225230

231+
msgid ""
232+
":gh:`138764`: Prevent :func:`annotationlib.call_annotate_function` from "
233+
"calling ``__annotate__`` functions that don't support "
234+
"``VALUE_WITH_FAKE_GLOBALS`` in a fake globals namespace with empty globals."
235+
msgstr ""
236+
237+
msgid ""
238+
"Make ``FORWARDREF`` and ``STRING`` annotations fall back to using ``VALUE`` "
239+
"annotations in the case that neither their own format, nor "
240+
"``VALUE_WITH_FAKE_GLOBALS`` are supported."
241+
msgstr ""
242+
226243
msgid ""
227244
":gh:`138779`: Support device numbers larger than ``2**63-1`` for the :attr:"
228245
"`~os.stat_result.st_rdev` field of the :class:`os.stat_result` structure."

0 commit comments

Comments
 (0)