Skip to content

Commit 5a20353

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 25c07af commit 5a20353

File tree

10 files changed

+75
-36
lines changed

10 files changed

+75
-36
lines changed

c-api/bytearray.po

Lines changed: 11 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: 2026-03-17 14:51+0000\n"
14+
"POT-Creation-Date: 2026-03-27 14:44+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/"
@@ -66,6 +66,11 @@ msgstr ""
6666
msgid "On failure, return ``NULL`` with an exception set."
6767
msgstr ""
6868

69+
msgid ""
70+
"If the object implements the buffer protocol, then the buffer must not be "
71+
"mutated while the bytearray object is being created."
72+
msgstr ""
73+
6974
msgid "Create a new bytearray object from *string* and its length, *len*."
7075
msgstr ""
7176

@@ -86,6 +91,11 @@ msgstr ""
8691
"pointer ``NULL``. Array yang dikembalikan selalu memiliki byte null ekstra "
8792
"yang ditambahkan."
8893

94+
msgid ""
95+
"It is not thread-safe to mutate the bytearray object while using the "
96+
"returned char array."
97+
msgstr ""
98+
8999
msgid ""
90100
"Resize the internal buffer of *bytearray* to *len*. Failure is a ``-1`` "
91101
"return with an exception set."

c-api/bytes.po

Lines changed: 16 additions & 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: 2026-03-21 14:21+0000\n"
15+
"POT-Creation-Date: 2026-03-27 14:44+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: python-doc bot, 2025\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -201,6 +201,11 @@ msgid ""
201201
"protocol."
202202
msgstr ""
203203

204+
msgid ""
205+
"If the object implements the buffer protocol, then the buffer must not be "
206+
"mutated while the bytes object is being created."
207+
msgstr ""
208+
204209
msgid "Return the length of the bytes in bytes object *o*."
205210
msgstr ""
206211

@@ -253,6 +258,11 @@ msgid ""
253258
"of *\\*bytes* will be set to ``NULL``; the appropriate exception will be set."
254259
msgstr ""
255260

261+
msgid ""
262+
"If *newpart* implements the buffer protocol, then the buffer must not be "
263+
"mutated while the new bytes object is being created."
264+
msgstr ""
265+
256266
msgid ""
257267
"Create a new bytes object in *\\*bytes* containing the contents of *newpart* "
258268
"appended to *bytes*. This version releases the :term:`strong reference` to "
@@ -278,6 +288,11 @@ msgid ""
278288
"and return ``NULL``."
279289
msgstr ""
280290

291+
msgid ""
292+
"If *iterable* objects implement the buffer protocol, then the buffers must "
293+
"not be mutated while the new bytes object is being created."
294+
msgstr ""
295+
281296
msgid ""
282297
"Resize a bytes object. *newsize* will be the new length of the bytes object. "
283298
"You can think of it as creating a new bytes object and destroying the old "

howto/logging.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: 2026-03-07 14:18+0000\n"
14+
"POT-Creation-Date: 2026-03-27 14:44+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/array.po

Lines changed: 8 additions & 8 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: 2026-03-23 14:50+0000\n"
14+
"POT-Creation-Date: 2026-03-27 14:44+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/"
@@ -229,7 +229,7 @@ msgstr ""
229229
msgid "The length in bytes of one array item in the internal representation."
230230
msgstr ""
231231

232-
msgid "Append a new item with value *x* to the end of the array."
232+
msgid "Append a new item with the specified value to the end of the array."
233233
msgstr ""
234234

235235
msgid ""
@@ -258,7 +258,7 @@ msgid ""
258258
"written on a machine with a different byte order."
259259
msgstr ""
260260

261-
msgid "Return the number of occurrences of *x* in the array."
261+
msgid "Return the number of occurrences of *value* in the array."
262262
msgstr ""
263263

264264
msgid ""
@@ -298,16 +298,16 @@ msgstr ""
298298

299299
msgid ""
300300
"Return the smallest *i* such that *i* is the index of the first occurrence "
301-
"of *x* in the array. The optional arguments *start* and *stop* can be "
302-
"specified to search for *x* within a subsection of the array. Raise :exc:"
303-
"`ValueError` if *x* is not found."
301+
"of *value* in the array. The optional arguments *start* and *stop* can be "
302+
"specified to search for *value* within a subsection of the array. Raise :"
303+
"exc:`ValueError` if *value* is not found."
304304
msgstr ""
305305

306306
msgid "Added optional *start* and *stop* parameters."
307307
msgstr ""
308308

309309
msgid ""
310-
"Insert a new item with value *x* in the array before position *i*. Negative "
310+
"Insert a new item *value* in the array before position *index*. Negative "
311311
"values are treated as being relative to the end of the array."
312312
msgstr ""
313313

@@ -317,7 +317,7 @@ msgid ""
317317
"removed and returned."
318318
msgstr ""
319319

320-
msgid "Remove the first occurrence of *x* from the array."
320+
msgid "Remove the first occurrence of *value* from the array."
321321
msgstr ""
322322

323323
msgid "Remove all elements from the array."

library/base64.po

Lines changed: 1 addition & 1 deletion
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: 2026-03-07 14:18+0000\n"
11+
"POT-Creation-Date: 2026-03-27 14:44+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1313
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
1414
"id/)\n"

library/collections.po

Lines changed: 10 additions & 11 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: 2026-03-17 14:51+0000\n"
14+
"POT-Creation-Date: 2026-03-27 14:44+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/"
@@ -581,10 +581,10 @@ msgstr ""
581581
msgid "Deque objects support the following methods:"
582582
msgstr ""
583583

584-
msgid "Add *x* to the right side of the deque."
584+
msgid "Add *item* to the right side of the deque."
585585
msgstr ""
586586

587-
msgid "Add *x* to the left side of the deque."
587+
msgid "Add *item* to the left side of the deque."
588588
msgstr ""
589589

590590
msgid "Remove all elements from the deque leaving it with length 0."
@@ -593,7 +593,7 @@ msgstr ""
593593
msgid "Create a shallow copy of the deque."
594594
msgstr ""
595595

596-
msgid "Count the number of deque elements equal to *x*."
596+
msgid "Count the number of deque elements equal to *value*."
597597
msgstr ""
598598

599599
msgid ""
@@ -608,12 +608,12 @@ msgid ""
608608
msgstr ""
609609

610610
msgid ""
611-
"Return the position of *x* in the deque (at or after index *start* and "
611+
"Return the position of *value* in the deque (at or after index *start* and "
612612
"before index *stop*). Returns the first match or raises :exc:`ValueError` "
613613
"if not found."
614614
msgstr ""
615615

616-
msgid "Insert *x* into the deque at position *i*."
616+
msgid "Insert *value* into the deque at position *index*."
617617
msgstr ""
618618

619619
msgid ""
@@ -1434,14 +1434,13 @@ msgstr ""
14341434
msgid ""
14351435
"Class that simulates a dictionary. The instance's contents are kept in a "
14361436
"regular dictionary, which is accessible via the :attr:`data` attribute of :"
1437-
"class:`UserDict` instances. If *initialdata* is provided, :attr:`data` is "
1438-
"initialized with its contents; note that a reference to *initialdata* will "
1439-
"not be kept, allowing it to be used for other purposes."
1437+
"class:`!UserDict` instances. If arguments are provided, they are used to "
1438+
"initialize :attr:`data`, like a regular dictionary."
14401439
msgstr ""
14411440

14421441
msgid ""
1443-
"In addition to supporting the methods and operations of mappings, :class:"
1444-
"`UserDict` instances provide the following attribute:"
1442+
"In addition to supporting the methods and operations of mappings, :class:`!"
1443+
"UserDict` instances provide the following attribute:"
14451444
msgstr ""
14461445

14471446
msgid ""

library/signal.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: 2026-03-09 14:44+0000\n"
14+
"POT-Creation-Date: 2026-03-27 14:44+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/"

tutorial/datastructures.po

Lines changed: 7 additions & 9 deletions
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: 2026-03-17 14:51+0000\n"
15+
"POT-Creation-Date: 2026-03-27 14:44+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1717
"Last-Translator: Hengky Kurniawan, 2025\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -59,11 +59,9 @@ msgstr ""
5959
"daftar *list*, dan ``a.insert(len(a), x)`` sama dengan ``a.append(x)``."
6060

6161
msgid ""
62-
"Remove the first item from the list whose value is equal to *x*. It raises "
63-
"a :exc:`ValueError` if there is no such item."
62+
"Remove the first item from the list whose value is equal to *value*. It "
63+
"raises a :exc:`ValueError` if there is no such item."
6464
msgstr ""
65-
"Hapus item pertama dari daftar *list* yang nilainya sama dengan *x*. Ini "
66-
"memunculkan :exc:`ValueError` jika tidak ada item seperti itu."
6765

6866
msgid ""
6967
"Remove the item at the given position in the list, and return it. If no "
@@ -76,8 +74,8 @@ msgid "Remove all items from the list. Similar to ``del a[:]``."
7674
msgstr ""
7775

7876
msgid ""
79-
"Return zero-based index of the first occurrence of *x* in the list. Raises "
80-
"a :exc:`ValueError` if there is no such item."
77+
"Return zero-based index of the first occurrence of *value* in the list. "
78+
"Raises a :exc:`ValueError` if there is no such item."
8179
msgstr ""
8280

8381
msgid ""
@@ -91,8 +89,8 @@ msgstr ""
9189
"Indeks yang dikembalikan dihitung relatif terhadap awal urutan penuh "
9290
"daripada argumen *start*."
9391

94-
msgid "Return the number of times *x* appears in the list."
95-
msgstr "Kembalikan berapa kali *x* muncul dalam daftar."
92+
msgid "Return the number of times *value* appears in the list."
93+
msgstr ""
9694

9795
msgid ""
9896
"Sort the items of the list in place (the arguments can be used for sort "

whatsnew/3.14.po

Lines changed: 2 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: 2026-03-09 14:44+0000\n"
14+
"POT-Creation-Date: 2026-03-27 14:44+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/"
@@ -561,7 +561,7 @@ msgstr ""
561561

562562
msgid ""
563563
"This feature is opt-in for now. Enabling profile-guided optimization is "
564-
"highly recommendeded when using the new interpreter as it is the only "
564+
"highly recommended when using the new interpreter as it is the only "
565565
"configuration that has been tested and validated for improved performance. "
566566
"For further information, see :option:`--with-tail-call-interp`."
567567
msgstr ""

whatsnew/changelog.po

Lines changed: 18 additions & 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: 2026-03-25 14:54+0000\n"
15+
"POT-Creation-Date: 2026-03-27 14:44+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/"
@@ -104,6 +104,12 @@ msgstr ""
104104
msgid "Library"
105105
msgstr "Pustaka"
106106

107+
msgid ""
108+
":gh:`145633`: Fix ``struct.pack('f', float)``: use :c:func:`PyFloat_Pack4` "
109+
"to raise :exc:`OverflowError`. Patch by Sergey B Kirpichev and Victor "
110+
"Stinner."
111+
msgstr ""
112+
107113
msgid ""
108114
":gh:`146076`: :mod:`zoneinfo`: fix crashes when deleting ``_weak_cache`` "
109115
"from a :class:`zoneinfo.ZoneInfo` subclass."
@@ -621,6 +627,17 @@ msgstr ""
621627
msgid "Build"
622628
msgstr "Pembangunan"
623629

630+
msgid ""
631+
":gh:`146498`: The iOS XCframework build script now ensures libpython isn't "
632+
"included in installed app content, and is more robust in identifying "
633+
"standard library binary content that requires processing."
634+
msgstr ""
635+
636+
msgid ""
637+
":gh:`146446`: The clean target for the Apple/iOS XCframework build script is "
638+
"now more selective when targeting a single architecture."
639+
msgstr ""
640+
624641
msgid ""
625642
":gh:`145801`: When Python build is optimized with GCC using PGO, use ``-"
626643
"fprofile-update=atomic`` option to use atomic operations when updating "

0 commit comments

Comments
 (0)