Skip to content

Commit eada1b4

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

4 files changed

Lines changed: 82 additions & 5 deletions

File tree

library/difflib.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-29 15:50+0000\n"
14+
"POT-Creation-Date: 2026-08-17 14:20+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1616
"Last-Translator: python-doc bot, 2026\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

library/json.po

Lines changed: 7 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-08-01 14:54+0000\n"
15+
"POT-Creation-Date: 2026-08-19 14:25+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/"
@@ -571,6 +571,9 @@ msgstr ""
571571
msgid "Supports the following objects and types by default:"
572572
msgstr ""
573573

574+
msgid "dict, frozendict"
575+
msgstr ""
576+
574577
msgid "list, tuple"
575578
msgstr "list, tuple"
576579

@@ -583,6 +586,9 @@ msgstr "number"
583586
msgid "Added support for int- and float-derived Enum classes."
584587
msgstr ""
585588

589+
msgid "Added support for :class:`frozendict`."
590+
msgstr ""
591+
586592
msgid ""
587593
"To extend this to recognize other objects, subclass and implement a :meth:"
588594
"`~JSONEncoder.default` method with another method that returns a "

library/urllib.request.po

Lines changed: 9 additions & 2 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-01 14:54+0000\n"
14+
"POT-Creation-Date: 2026-08-19 14:25+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/"
@@ -1014,7 +1014,14 @@ msgid ""
10141014
"*uri* can be either a single URI, or a sequence of URIs. *realm*, *user* and "
10151015
"*passwd* must be strings. This causes ``(user, passwd)`` to be used as "
10161016
"authentication tokens when authentication for *realm* and a super-URI of any "
1017-
"of the given URIs is given."
1017+
"of the given URIs is given. If a URI includes a scheme, its credentials only "
1018+
"match authentication URIs with the same scheme or no scheme. A URI without a "
1019+
"scheme matches authentication URIs with any scheme."
1020+
msgstr ""
1021+
1022+
msgid ""
1023+
"Authentication credentials for URIs with a scheme are now scoped by that "
1024+
"scheme."
10181025
msgstr ""
10191026

10201027
msgid ""

whatsnew/changelog.po

Lines changed: 65 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-08-17 14:20+0000\n"
15+
"POT-Creation-Date: 2026-08-19 14:25+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/"
@@ -48,9 +48,40 @@ msgid ""
4848
"version 2.8.3 for the fix to :cve:`2026-72522`."
4949
msgstr ""
5050

51+
msgid ""
52+
":gh:`155292`: Change the :mod:`stringprep` module and :mod:`encodings.idna` "
53+
"codec to not consider Unicode codepoint attributes beyond those defined in :"
54+
"rfc:`3454`."
55+
msgstr ""
56+
57+
msgid ""
58+
":gh:`155694`: Fix :cve:`2026-15806` by scoping :class:`~urllib.request."
59+
"HTTPPasswordMgr` credentials to the URL scheme, preventing credentials "
60+
"stored for an HTTPS URL from being used for a matching HTTP URL, while URIs "
61+
"without a scheme continue to match any scheme."
62+
msgstr ""
63+
5164
msgid "Library"
5265
msgstr "Pustaka"
5366

67+
msgid ""
68+
":gh:`155869`: Fix :meth:`!reorganize` in :mod:`dbm.dumb` failing to persist "
69+
"updated value offsets, which could cause data loss after reopening the "
70+
"database."
71+
msgstr ""
72+
73+
msgid ""
74+
":gh:`155702`: Fix :class:`sqlite3.Blob` slice assignment with a step. It "
75+
"patched the bytes object read from the blob, which for a single byte is an "
76+
"immortal singleton, so that the value of that byte was changed in the whole "
77+
"process."
78+
msgstr ""
79+
80+
msgid ""
81+
":gh:`155519`: Avoid a data-race in free-threaded builds when reading and "
82+
"writing context variables from different threads."
83+
msgstr ""
84+
5485
msgid ""
5586
":gh:`155009`: Fix :class:`argparse.ArgumentParser` to preserve the program "
5687
"name from ``sys.argv[0]`` when a named module is executed as the main "
@@ -113,6 +144,39 @@ msgid ""
113144
"whole context it iterated over."
114145
msgstr ""
115146

147+
msgid ""
148+
":gh:`155400`: Fix a deadlock in the free-threaded build between two threads "
149+
"assigning to a special method of the same class. While applying the type "
150+
"slot updates with the world stopped, only the type lock was prevented from "
151+
"being released; the type dict mutex could still be released and re-acquired, "
152+
"in the wrong order, if the thread blocked on the stop-the-world mutex."
153+
msgstr ""
154+
155+
msgid ""
156+
":gh:`154196`: Improve :exc:`AttributeError` messages from unresolved lazy "
157+
"imports. Patch by Bartosz Sławecki."
158+
msgstr ""
159+
160+
msgid ""
161+
":gh:`151377`: Fix races in free-threaded builds when updating type slots for "
162+
"newly created classes and when removing entries from a base type's "
163+
"subclasses dictionary."
164+
msgstr ""
165+
166+
msgid ""
167+
":gh:`148817`: Fold large constant list and set literals used as the iterable "
168+
"of a :keyword:`for` loop or ``in``/``not in`` test into a constant :class:"
169+
"`tuple` or :class:`frozenset`, restoring an optimization previously done by "
170+
"the AST optimizer that was lost when constant folding moved to the CFG."
171+
msgstr ""
172+
173+
msgid ""
174+
":gh:`85260`: :func:`compile` now raises :exc:`ValueError` instead of "
175+
"crashing on a debug build if an identifier field of an AST node (such as the "
176+
"name of a function, a class, an imported module or a caught exception) is "
177+
"``\"None\"``, ``\"True\"`` or ``\"False\"``."
178+
msgstr ""
179+
116180
msgid "Python 3.15.0 release candidate 1"
117181
msgstr ""
118182

0 commit comments

Comments
 (0)