Skip to content

Commit e0613ba

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

File tree

3 files changed

+36
-22
lines changed

3 files changed

+36
-22
lines changed

library/uuid.po

Lines changed: 11 additions & 2 deletions
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-08-07 20:38+0000\n"
14+
"POT-Creation-Date: 2025-08-23 14:15+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:35+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -421,14 +421,23 @@ msgid ""
421421
">>> uuid.MAX\n"
422422
"UUID('ffffffff-ffff-ffff-ffff-ffffffffffff')\n"
423423
"\n"
424+
">>> # same as UUIDv1 but with fields reordered to improve DB locality\n"
425+
">>> uuid.uuid6()\n"
426+
"UUID('1f0799c0-98b9-62db-92c6-a0d365b91053')\n"
427+
"\n"
424428
">>> # get UUIDv7 creation (local) time as a timestamp in milliseconds\n"
425429
">>> u = uuid.uuid7()\n"
426430
">>> u.time\n"
427431
"1743936859822\n"
432+
"\n"
428433
">>> # get UUIDv7 creation (local) time as a datetime object\n"
429434
">>> import datetime as dt\n"
430435
">>> dt.datetime.fromtimestamp(u.time / 1000)\n"
431-
"datetime.datetime(...)"
436+
"datetime.datetime(...)\n"
437+
"\n"
438+
">>> # make a UUID with custom blocks\n"
439+
">>> uuid.uuid8(0x12345678, 0x9abcdef0, 0x11223344)\n"
440+
"UUID('00001234-5678-8ef0-8000-000011223344')"
432441
msgstr ""
433442

434443
msgid "Command-Line Example"

whatsnew/3.14.po

Lines changed: 19 additions & 19 deletions
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-08-17 14:16+0000\n"
14+
"POT-Creation-Date: 2025-08-23 14:15+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:35+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -51,9 +51,9 @@ msgid "Summary -- release highlights"
5151
msgstr ""
5252

5353
msgid ""
54-
"Python 3.14 beta is the pre-release of the next version of the Python "
55-
"programming language, with a mix of changes to the language, the "
56-
"implementation and the standard library."
54+
"Python 3.14 will be the latest stable release of the Python programming "
55+
"language, with a mix of changes to the language, the implementation and the "
56+
"standard library."
5757
msgstr ""
5858

5959
msgid ""
@@ -790,8 +790,8 @@ msgid ""
790790
msgstr ""
791791

792792
msgid ""
793-
"When unpacking assignment fails due to incorrect number of variables, the "
794-
"error message prints the received number of values in more cases than "
793+
"When an unpacking assignment fails due to an incorrect number of variables, "
794+
"the error message prints the received number of values in more cases than "
795795
"before. (Contributed by Tushar Sadhwani in :gh:`122239`.)"
796796
msgstr ""
797797

@@ -937,7 +937,7 @@ msgstr ""
937937
msgid ""
938938
"Complete the :pep:`587` :ref:`PyConfig C API <pyconfig_api>` by adding :c:"
939939
"func:`PyInitConfig_AddModule` which can be used to add a built-in extension "
940-
"module; feature previously referred to as the “inittab”."
940+
"module; a feature previously referred to as the “inittab”."
941941
msgstr ""
942942

943943
msgid ""
@@ -1294,7 +1294,7 @@ msgid ""
12941294
"The :class:`warnings.catch_warnings` context manager will now optionally use "
12951295
"a context variable for warning filters. This is enabled by setting the :"
12961296
"data:`~sys.flags.context_aware_warnings` flag, either with the ``-X`` "
1297-
"command-line option or an environment variable. This gives predicable "
1297+
"command-line option or an environment variable. This gives predictable "
12981298
"warnings control when using :class:`~warnings.catch_warnings` combined with "
12991299
"multiple threads or asynchronous tasks. The flag defaults to true for the "
13001300
"free-threaded build and false for the GIL-enabled build."
@@ -1429,9 +1429,9 @@ msgid ""
14291429
msgstr ""
14301430

14311431
msgid ""
1432-
"``\\B`` in :mod:`regular expression <re>` now matches empty input string. "
1433-
"Now it is always the opposite of ``\\b``. (Contributed by Serhiy Storchaka "
1434-
"in :gh:`124130`.)"
1432+
"``\\B`` in :mod:`regular expression <re>` now matches the empty input "
1433+
"string. Now it is always the opposite of ``\\b``. (Contributed by Serhiy "
1434+
"Storchaka in :gh:`124130`.)"
14351435
msgstr ""
14361436

14371437
msgid ""
@@ -1512,7 +1512,7 @@ msgstr ""
15121512

15131513
msgid ""
15141514
"The compiler emits a :exc:`SyntaxWarning` when a :keyword:`return`, :keyword:"
1515-
"`break` or :keyword:`continue` statements appears where it exits a :keyword:"
1515+
"`break` or :keyword:`continue` statement appears where it exits a :keyword:"
15161516
"`finally` block. This change is specified in :pep:`765`."
15171517
msgstr ""
15181518

@@ -1583,7 +1583,7 @@ msgstr ""
15831583

15841584
msgid ""
15851585
"Add new ``--feature-version``, ``--optimize``, ``--show-empty`` options to "
1586-
"command-line interface. (Contributed by Semyon Moroz in :gh:`133367`.)"
1586+
"the command-line interface. (Contributed by Semyon Moroz in :gh:`133367`.)"
15871587
msgstr ""
15881588

15891589
msgid "asyncio"
@@ -2756,7 +2756,7 @@ msgid ""
27562756
":meth:`~unittest.TestCase.assertStartsWith`, :meth:`~unittest.TestCase."
27572757
"assertNotStartsWith`, :meth:`~unittest.TestCase.assertEndsWith` and :meth:"
27582758
"`~unittest.TestCase.assertNotEndsWith` check whether the Unicode or byte "
2759-
"string starts or ends with particular string(s)."
2759+
"string starts or ends with particular strings."
27602760
msgstr ""
27612761

27622762
msgid "(Contributed by Serhiy Storchaka in :gh:`71339`.)"
@@ -2854,7 +2854,7 @@ msgid ""
28542854
"supported browsers on macOS."
28552855
msgstr ""
28562856

2857-
msgid "zipinfo"
2857+
msgid "zipfile"
28582858
msgstr ""
28592859

28602860
msgid ""
@@ -2865,7 +2865,7 @@ msgid ""
28652865
msgstr ""
28662866

28672867
msgid ""
2868-
":meth:`zipfile.ZipFile.writestr` now respect ``SOURCE_DATE_EPOCH`` that "
2868+
":meth:`zipfile.ZipFile.writestr` now respects ``SOURCE_DATE_EPOCH`` that "
28692869
"distributions can set centrally and have build tools consume this in order "
28702870
"to produce reproducible output. (Contributed by Jiahao Li in :gh:`91279`.)"
28712871
msgstr ""
@@ -3004,7 +3004,7 @@ msgstr "zlib"
30043004
msgid ""
30053005
"On Windows, `zlib-ng <https://github.com/zlib-ng/zlib-ng>`__ is now used as "
30063006
"the implementation of the :mod:`zlib` module in the default binaries. There "
3007-
"are no known incompatabilities between ``zlib-ng`` and the previously-used "
3007+
"are no known incompatibilities between ``zlib-ng`` and the previously-used "
30083008
"``zlib`` implementation. This should result in better performance at all "
30093009
"compression levels."
30103010
msgstr ""
@@ -4085,7 +4085,7 @@ msgid ""
40854085
msgstr ""
40864086

40874087
msgid ""
4088-
"The :func:`locale.nl_langinfo` function now sets temporarily the "
4088+
"The :func:`locale.nl_langinfo` function now temporarily sets the "
40894089
"``LC_CTYPE`` locale in some cases. This temporary change affects other "
40904090
"threads. (Contributed by Serhiy Storchaka in :gh:`69998`.)"
40914091
msgstr ""
@@ -4386,7 +4386,7 @@ msgstr ""
43864386

43874387
msgid ""
43884388
"Add support for a new ``p`` format unit in :c:func:`Py_BuildValue` that "
4389-
"allows to take a C integer and produce a Python :class:`bool` object. "
4389+
"allows taking a C integer and produces a Python :class:`bool` object. "
43904390
"(Contributed by Pablo Galindo in :issue:`45325`.)"
43914391
msgstr ""
43924392

whatsnew/changelog.po

Lines changed: 6 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-08-21 14:19+0000\n"
14+
"POT-Creation-Date: 2025-08-23 14:15+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:35+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -42,6 +42,11 @@ msgstr ""
4242
msgid "Core and Builtins"
4343
msgstr "Inti dan Bawaan"
4444

45+
msgid ""
46+
":gh:`137384`: Fix a crash when using the :mod:`warnings` module in a "
47+
"finalizer at shutdown. Patch by Kumar Aditya."
48+
msgstr ""
49+
4550
msgid ""
4651
":gh:`137079`: Fix keyword typo recognition when parsing files. Patch by "
4752
"Pablo Galindo."

0 commit comments

Comments
 (0)