Skip to content

Commit a3fcf7f

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

10 files changed

Lines changed: 159 additions & 36 deletions

File tree

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.15\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-07-05 15:08+0000\n"
14+
"POT-Creation-Date: 2026-07-25 14:57+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-eventloop.po

Lines changed: 7 additions & 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-07-15 15:21+0000\n"
14+
"POT-Creation-Date: 2026-07-25 14:57+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/"
@@ -1942,6 +1942,12 @@ msgid ""
19421942
"have finished."
19431943
msgstr ""
19441944

1945+
msgid ""
1946+
"``wait_closed()`` now waits until the server is closed and all active "
1947+
"connections have finished. Previously, it returned immediately if the "
1948+
"server was already closed, even if connections were still active."
1949+
msgstr ""
1950+
19451951
msgid ""
19461952
"List of socket-like objects, ``asyncio.trsock.TransportSocket``, which the "
19471953
"server is listening on."

library/dataclasses.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-07-03 15:50+0000\n"
14+
"POT-Creation-Date: 2026-07-25 14:57+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/datetime.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.15\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2026-07-05 15:08+0000\n"
15+
"POT-Creation-Date: 2026-07-25 14:57+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1717
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2026\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

library/difflib.po

Lines changed: 12 additions & 21 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-07-19 14:48+0000\n"
14+
"POT-Creation-Date: 2026-07-25 14:57+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/"
@@ -60,14 +60,17 @@ msgid ""
6060
msgstr ""
6161

6262
msgid ""
63-
"**Automatic junk heuristic:** :class:`SequenceMatcher` supports a heuristic "
64-
"that automatically treats certain sequence items as junk. The heuristic "
65-
"counts how many times each individual item appears in the sequence. If an "
66-
"item's duplicates (after the first one) account for more than 1% of the "
67-
"sequence and the sequence is at least 200 items long, this item is marked as "
68-
"\"popular\" and is treated as junk for the purpose of sequence matching. "
69-
"This heuristic can be turned off by setting the ``autojunk`` argument to "
70-
"``False`` when creating the :class:`SequenceMatcher`."
63+
"**Junk**: :class:`SequenceMatcher` accepts an ``isjunk`` predicate and an "
64+
"``autojunk`` flag. Items that are considered as junk will not be considered "
65+
"to find similar content blocks. This can produce better results for humans "
66+
"(typically breaking on whitespace) and faster (because it reduces the number "
67+
"of possible combinations). But it can also cause pathological cases where "
68+
"too many items considered junk cause an unexpectedly large (but correct) "
69+
"diff result. You should consider tuning them or turning them off depending "
70+
"on your data. Moreover, only the second sequence is inspected for junk. This "
71+
"causes the diff output to not be symmetrical. When ``autojunk=True``, it "
72+
"will consider as junk the items that account for more than 1% of the "
73+
"sequence, if it is at least 200 items long."
7174
msgstr ""
7275

7376
msgid "Added the *autojunk* parameter."
@@ -582,18 +585,6 @@ msgid ""
582585
"meth:`quick_ratio` or :meth:`real_quick_ratio` first to get an upper bound."
583586
msgstr ""
584587

585-
msgid ""
586-
"Caution: The result of a :meth:`ratio` call may depend on the order of the "
587-
"arguments. For instance::"
588-
msgstr ""
589-
590-
msgid ""
591-
">>> SequenceMatcher(None, 'tide', 'diet').ratio()\n"
592-
"0.25\n"
593-
">>> SequenceMatcher(None, 'diet', 'tide').ratio()\n"
594-
"0.5"
595-
msgstr ""
596-
597588
msgid "Return an upper bound on :meth:`ratio` relatively quickly."
598589
msgstr ""
599590

library/http.cookiejar.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-07-05 15:08+0000\n"
14+
"POT-Creation-Date: 2026-07-25 14:57+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/re.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-07-05 15:08+0000\n"
14+
"POT-Creation-Date: 2026-07-25 14:57+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/"

license.po

Lines changed: 54 additions & 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-07-13 16:24+0000\n"
14+
"POT-Creation-Date: 2026-07-25 14:57+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/"
@@ -1543,3 +1543,56 @@ msgid ""
15431543
"OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n"
15441544
"DAMAGE."
15451545
msgstr ""
1546+
1547+
msgid "Unicode Character Database"
1548+
msgstr ""
1549+
1550+
msgid ""
1551+
"An extract of the `Unicode Character Database <https://www.unicode.org/ucd/"
1552+
">`__, converted to an internal format, is used by the :mod:`unicodedata` "
1553+
"module and for the Unicode support of the :class:`str` type. The original "
1554+
"Unicode data files are distributed under the `Unicode License <https://www."
1555+
"unicode.org/license.txt>`__::"
1556+
msgstr ""
1557+
1558+
msgid ""
1559+
"UNICODE LICENSE V3\n"
1560+
"\n"
1561+
"COPYRIGHT AND PERMISSION NOTICE\n"
1562+
"\n"
1563+
"Copyright © 1991-2026 Unicode, Inc.\n"
1564+
"\n"
1565+
"NOTICE TO USER: Carefully read the following legal agreement. BY\n"
1566+
"DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR\n"
1567+
"SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE\n"
1568+
"TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT\n"
1569+
"DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n"
1570+
"\n"
1571+
"Permission is hereby granted, free of charge, to any person obtaining a\n"
1572+
"copy of data files and any associated documentation (the \"Data Files\") or\n"
1573+
"software and any associated documentation (the \"Software\") to deal in the\n"
1574+
"Data Files or Software without restriction, including without limitation\n"
1575+
"the rights to use, copy, modify, merge, publish, distribute, and/or sell\n"
1576+
"copies of the Data Files or Software, and to permit persons to whom the\n"
1577+
"Data Files or Software are furnished to do so, provided that either (a)\n"
1578+
"this copyright and permission notice appear with all copies of the Data\n"
1579+
"Files or Software, or (b) this copyright and permission notice appear in\n"
1580+
"associated Documentation.\n"
1581+
"\n"
1582+
"THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY\n"
1583+
"KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n"
1584+
"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF\n"
1585+
"THIRD PARTY RIGHTS.\n"
1586+
"\n"
1587+
"IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE\n"
1588+
"BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n"
1589+
"OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\n"
1590+
"WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\n"
1591+
"ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA\n"
1592+
"FILES OR SOFTWARE.\n"
1593+
"\n"
1594+
"Except as contained in this notice, the name of a copyright holder shall\n"
1595+
"not be used in advertising or otherwise to promote the sale, use or other\n"
1596+
"dealings in these Data Files or Software without prior written\n"
1597+
"authorization of the copyright holder."
1598+
msgstr ""

reference/compound_stmts.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-07-05 15:08+0000\n"
14+
"POT-Creation-Date: 2026-07-25 14:57+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1616
"Last-Translator: python-doc bot, 2026\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

whatsnew/changelog.po

Lines changed: 80 additions & 7 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-07-24 08:30+0000\n"
15+
"POT-Creation-Date: 2026-07-25 14:57+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/"
@@ -38,9 +38,21 @@ msgstr "Windows"
3838
msgid ":gh:`124111`: Updated Windows builds to use Tcl/Tk 9.0.4."
3939
msgstr ""
4040

41+
msgid "Tools/Demos"
42+
msgstr "Perkakas/Demo"
43+
44+
msgid ""
45+
":gh:`154580`: Fix ``python-gdb.py`` raising :exc:`UnicodeEncodeError` when "
46+
"pretty-printing a non-ASCII :class:`str` in a locale whose host charset "
47+
"cannot encode it, such as any non-ASCII string in the C locale."
48+
msgstr ""
49+
4150
msgid "Tests"
4251
msgstr "Pengujian"
4352

53+
msgid ":gh:`76595`: Add C API tests for :c:func:`PyCapsule_Import`."
54+
msgstr ""
55+
4456
msgid ""
4557
":gh:`154211`: Add ``test.support.skip_if_huge_c_stack()`` and use it to skip "
4658
"tests that exhaust the C stack if the stack limit is very large (e.g. on "
@@ -59,6 +71,16 @@ msgstr ""
5971
msgid "Library"
6072
msgstr "Pustaka"
6173

74+
msgid ""
75+
":gh:`142035`: Fix incorrect wrapping of :mod:`argparse` help text when color "
76+
"is enabled."
77+
msgstr ""
78+
79+
msgid ""
80+
":gh:`154551`: Fix :func:`ctypes.util.find_library` returning ``None`` in non-"
81+
"UTF-8 locales."
82+
msgstr ""
83+
6284
msgid ""
6385
":gh:`154460`: Fix :func:`time.strftime` and :meth:`datetime.datetime."
6486
"strftime` returning a wrong ISO 8601 week number (``%V``) on OpenBSD."
@@ -69,6 +91,12 @@ msgid ""
6991
"addaudithook`."
7092
msgstr ""
7193

94+
msgid ""
95+
":gh:`154435`: Fix :func:`os.posix_fadvise` and :func:`os.posix_fallocate` on "
96+
"DragonFly BSD: they raised :exc:`OSError` with a meaningless error code, "
97+
"because these functions return -1 and set ``errno`` there."
98+
msgstr ""
99+
72100
msgid ""
73101
":gh:`154399`: Fix :mod:`venv` activation in a non-interactive csh: "
74102
"``activate.csh`` no longer fails when the ``prompt`` variable is not set."
@@ -113,6 +141,12 @@ msgid ""
113141
"data:`~os.O_CLOEXEC` flag."
114142
msgstr ""
115143

144+
msgid ""
145+
":gh:`145030`: Fix :mod:`asyncio` write pipe transports for named FIFOs on "
146+
"macOS. Unread data sitting in the FIFO made the transport misinterpret a "
147+
"poll event as the reader disconnecting, wrongly closing the transport."
148+
msgstr ""
149+
116150
msgid ""
117151
":gh:`154176`: Fix a crash in :func:`locale.strxfrm` on DragonFly BSD, whose "
118152
"``wcsxfrm()`` does not support the zero size."
@@ -152,6 +186,17 @@ msgid ""
152186
"`~curses.window.instr`, instead of the low byte of its code point."
153187
msgstr ""
154188

189+
msgid ""
190+
":gh:`146011`: Fix a heap-use-after-free in the C implementation of :mod:"
191+
"`decimal` when calling :func:`repr` after deleting the :class:`~decimal."
192+
"Context`."
193+
msgstr ""
194+
195+
msgid ""
196+
":gh:`153761`: Fix cancelling :meth:`asyncio.loop.sock_accept` dropping a "
197+
"pending connection."
198+
msgstr ""
199+
155200
msgid ""
156201
":gh:`127049`: Fix a race condition in :mod:`asyncio` on Unix where :meth:"
157202
"`asyncio.subprocess.Process.send_signal`, :meth:`~asyncio.subprocess.Process."
@@ -167,6 +212,16 @@ msgid ""
167212
"the corresponding setters hold."
168213
msgstr ""
169214

215+
msgid ""
216+
":gh:`153133`: Fix a socket leak in :meth:`asyncio.loop.create_connection` "
217+
"when the transport cannot be created."
218+
msgstr ""
219+
220+
msgid ""
221+
":gh:`152431`: Fix ``asyncio.StreamWriter.start_tls()`` to keep the linked "
222+
"``StreamReader`` transport in sync with the upgraded transport."
223+
msgstr ""
224+
170225
msgid ""
171226
":gh:`119710`: Fix :mod:`asyncio` subprocess :meth:`~asyncio.subprocess."
172227
"Process.wait` hanging when the process has exited but one of its pipes is "
@@ -198,9 +253,22 @@ msgid ""
198253
"as the delimiter."
199254
msgstr ""
200255

256+
msgid "Documentation"
257+
msgstr "Dokumentasi"
258+
259+
msgid ""
260+
":gh:`118150`: Clarify in the :mod:`difflib` documentation what *junk* "
261+
"actually does, its drawbacks, and how to control it."
262+
msgstr ""
263+
201264
msgid "Core and Builtins"
202265
msgstr "Inti dan Bawaan"
203266

267+
msgid ""
268+
":gh:`153809`: Fix interpreter crash while deallocating objects of :class:"
269+
"`asyncio.Task` on free-threaded builds. Contributed by Sergey Miryanov."
270+
msgstr ""
271+
204272
msgid ""
205273
":gh:`154275`: Fix a crash when getting deeply nested ``__parameters__`` from "
206274
"a :class:`types.GenericAlias` objects."
@@ -222,6 +290,17 @@ msgid ""
222290
"__getstate__` under the :term:`free-threaded build`."
223291
msgstr ""
224292

293+
msgid ""
294+
":gh:`153570`: Fix a use-after-free in :meth:`bytearray.take_bytes` when the "
295+
"argument's :meth:`~object.__index__` method resizes the bytearray. Patch by "
296+
"tonghuaroot."
297+
msgstr ""
298+
299+
msgid ""
300+
":gh:`153419`: Fix multiple :class:`bytearray` crashes and reference leaks "
301+
"caused by skipping :meth:`~object.__init__` and broken state setup code."
302+
msgstr ""
303+
225304
msgid ""
226305
":gh:`153236`: Propagate exceptions raised while importing lazy submodules "
227306
"instead of reporting them as missing attributes."
@@ -1460,9 +1539,6 @@ msgid ""
14601539
"appending another copy of the traceback to it."
14611540
msgstr ""
14621541

1463-
msgid "Documentation"
1464-
msgstr "Dokumentasi"
1465-
14661542
msgid ""
14671543
":gh:`86726`: Greatly expand the :mod:`tkinter` documentation to cover the "
14681544
"full public API of the package and its submodules. The descriptions are "
@@ -1961,9 +2037,6 @@ msgid ""
19612037
":gh:`149029`: Update macOS installer to ship with SQLite version 3.53.1."
19622038
msgstr ""
19632039

1964-
msgid "Tools/Demos"
1965-
msgstr "Perkakas/Demo"
1966-
19672040
msgid ""
19682041
":gh:`150258`: Update the tooltip on the Tachyon flame graph to show both "
19692042
"absolute and relative percentages."

0 commit comments

Comments
 (0)