Skip to content

Commit 5e33344

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent ae23d7e commit 5e33344

File tree

18 files changed

+310
-56
lines changed

18 files changed

+310
-56
lines changed

c-api/bytes.po

Lines changed: 44 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: 2025-11-05 14:15+0000\n"
15+
"POT-Creation-Date: 2025-11-13 14:15+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Hengky Kurniawan, 2025\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -289,6 +289,49 @@ msgid ""
289289
"``NULL``, :exc:`MemoryError` is set, and ``-1`` is returned."
290290
msgstr ""
291291

292+
msgid ""
293+
"Get the string representation of *bytes*. This function is currently used to "
294+
"implement :meth:`!bytes.__repr__` in Python."
295+
msgstr ""
296+
297+
msgid ""
298+
"This function does not do type checking; it is undefined behavior to pass "
299+
"*bytes* as a non-bytes object or ``NULL``."
300+
msgstr ""
301+
302+
msgid ""
303+
"If *smartquotes* is true, the representation will use a double-quoted string "
304+
"instead of single-quoted string when single-quotes are present in *bytes*. "
305+
"For example, the byte string ``'Python'`` would be represented as "
306+
"``b\"'Python'\"`` when *smartquotes* is true, or ``b'\\'Python\\''`` when it "
307+
"is false."
308+
msgstr ""
309+
310+
msgid ""
311+
"On success, this function returns a :term:`strong reference` to a :class:"
312+
"`str` object containing the representation. On failure, this returns "
313+
"``NULL`` with an exception set."
314+
msgstr ""
315+
316+
msgid ""
317+
"Unescape a backslash-escaped string *s*. *s* must not be ``NULL``. *len* "
318+
"must be the size of *s*."
319+
msgstr ""
320+
321+
msgid ""
322+
"*errors* must be one of ``\"strict\"``, ``\"replace\"``, or ``\"ignore\"``. "
323+
"If *errors* is ``NULL``, then ``\"strict\"`` is used by default."
324+
msgstr ""
325+
326+
msgid ""
327+
"On success, this function returns a :term:`strong reference` to a Python :"
328+
"class:`bytes` object containing the unescaped string. On failure, this "
329+
"function returns ``NULL`` with an exception set."
330+
msgstr ""
331+
332+
msgid "*unicode* and *recode_encoding* are now unused."
333+
msgstr ""
334+
292335
msgid "object"
293336
msgstr "objek"
294337

c-api/code.po

Lines changed: 12 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: 2025-10-27 14:15+0000\n"
15+
"POT-Creation-Date: 2025-11-13 18:32+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Hengky Kurniawan, 2025\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -226,6 +226,17 @@ msgid ""
226226
"it before returning."
227227
msgstr ""
228228

229+
msgid "This is a :term:`soft deprecated` function that does nothing."
230+
msgstr ""
231+
232+
msgid ""
233+
"Prior to Python 3.10, this function would perform basic optimizations to a "
234+
"code object."
235+
msgstr ""
236+
237+
msgid "This function now does nothing."
238+
msgstr ""
239+
229240
msgid "Code Object Flags"
230241
msgstr ""
231242

c-api/dict.po

Lines changed: 40 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: 2025-11-07 14:15+0000\n"
15+
"POT-Creation-Date: 2025-11-13 18:32+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Hengky Kurniawan, 2025\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -449,6 +449,45 @@ msgid ""
449449
"it before returning."
450450
msgstr ""
451451

452+
msgid "Dictionary View Objects"
453+
msgstr ""
454+
455+
msgid ""
456+
"Return true if *op* is a view of a set inside a dictionary. This is "
457+
"currently equivalent to :c:expr:`PyDictKeys_Check(op) || "
458+
"PyDictItems_Check(op)`. This function always succeeds."
459+
msgstr ""
460+
461+
msgid ""
462+
"Type object for a view of dictionary keys. In Python, this is the type of "
463+
"the object returned by :meth:`dict.keys`."
464+
msgstr ""
465+
466+
msgid ""
467+
"Return true if *op* is an instance of a dictionary keys view. This function "
468+
"always succeeds."
469+
msgstr ""
470+
471+
msgid ""
472+
"Type object for a view of dictionary values. In Python, this is the type of "
473+
"the object returned by :meth:`dict.values`."
474+
msgstr ""
475+
476+
msgid ""
477+
"Return true if *op* is an instance of a dictionary values view. This "
478+
"function always succeeds."
479+
msgstr ""
480+
481+
msgid ""
482+
"Type object for a view of dictionary items. In Python, this is the type of "
483+
"the object returned by :meth:`dict.items`."
484+
msgstr ""
485+
486+
msgid ""
487+
"Return true if *op* is an instance of a dictionary items view. This function "
488+
"always succeeds."
489+
msgstr ""
490+
452491
msgid "object"
453492
msgstr "objek"
454493

c-api/exceptions.po

Lines changed: 6 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: 2025-11-11 14:15+0000\n"
15+
"POT-Creation-Date: 2025-11-13 18:32+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Hengky Kurniawan, 2025\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -286,6 +286,11 @@ msgid ""
286286
"is a :exc:`SyntaxError`."
287287
msgstr ""
288288

289+
msgid ""
290+
"Similar to :c:func:`PyErr_SyntaxLocationObject`, but also sets the "
291+
"*end_lineno* and *end_col_offset* information for the current exception."
292+
msgstr ""
293+
289294
msgid ""
290295
"Like :c:func:`PyErr_SyntaxLocationObject`, but *filename* is a byte string "
291296
"decoded from the :term:`filesystem encoding and error handler`."

c-api/file.po

Lines changed: 21 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-25 14:12+0000\n"
14+
"POT-Creation-Date: 2025-11-13 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/"
@@ -113,6 +113,26 @@ msgid ""
113113
"arguments."
114114
msgstr ""
115115

116+
msgid ""
117+
"Open *path* with the mode ``'rb'``. *path* must be a Python :class:`str` "
118+
"object. The behavior of this function may be overridden by :c:func:"
119+
"`PyFile_SetOpenCodeHook` to allow for some preprocessing of the text."
120+
msgstr ""
121+
122+
msgid "This is analogous to :func:`io.open_code` in Python."
123+
msgstr ""
124+
125+
msgid ""
126+
"On success, this function returns a :term:`strong reference` to a Python "
127+
"file object. On failure, this function returns ``NULL`` with an exception "
128+
"set."
129+
msgstr ""
130+
131+
msgid ""
132+
"Similar to :c:func:`PyFile_OpenCodeObject`, but *path* is a UTF-8 encoded :c:"
133+
"expr:`const char*`."
134+
msgstr ""
135+
116136
msgid ""
117137
"Write object *obj* to file object *p*. The only supported flag for *flags* "
118138
"is :c:macro:`Py_PRINT_RAW`; if given, the :func:`str` of the object is "

c-api/float.po

Lines changed: 16 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-11-11 14:15+0000\n"
14+
"POT-Creation-Date: 2025-11-13 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/"
@@ -105,12 +105,27 @@ msgid ""
105105
"C11 standard ``<math.h>`` header."
106106
msgstr ""
107107

108+
msgid ""
109+
"The definition (accurate for a :c:expr:`double` type) of the :data:`math.e` "
110+
"constant."
111+
msgstr ""
112+
108113
msgid "High precision (long double) definition of :data:`~math.e` constant."
109114
msgstr ""
110115

116+
msgid ""
117+
"The definition (accurate for a :c:expr:`double` type) of the :data:`math.pi` "
118+
"constant."
119+
msgstr ""
120+
111121
msgid "High precision (long double) definition of :data:`~math.pi` constant."
112122
msgstr ""
113123

124+
msgid ""
125+
"The definition (accurate for a :c:expr:`double` type) of the :data:`math."
126+
"tau` constant."
127+
msgstr ""
128+
114129
msgid "Return :data:`math.nan` from a function."
115130
msgstr ""
116131

c-api/intro.po

Lines changed: 6 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: 2025-11-09 14:13+0000\n"
15+
"POT-Creation-Date: 2025-11-13 14:15+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/"
@@ -160,6 +160,11 @@ msgstr ""
160160
msgid "Return the absolute value of ``x``."
161161
msgstr ""
162162

163+
msgid ""
164+
"If the result cannot be represented (for example, if ``x`` has :c:macro:`!"
165+
"INT_MIN` value for :c:expr:`int` type), the behavior is undefined."
166+
msgstr ""
167+
163168
msgid ""
164169
"Ask the compiler to always inline a static inline function. The compiler can "
165170
"ignore it and decide to not inline the function."

c-api/type.po

Lines changed: 27 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-11-11 14:15+0000\n"
14+
"POT-Creation-Date: 2025-11-13 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/"
@@ -121,6 +121,21 @@ msgid ""
121121
"not returned to it by a previous call to :c:func:`PyType_AddWatcher`."
122122
msgstr ""
123123

124+
msgid ""
125+
"Mark *type* as not watched. This undoes a previous call to :c:func:"
126+
"`PyType_Watch`. *type* must not be ``NULL``."
127+
msgstr ""
128+
129+
msgid ""
130+
"An extension should never call this function with a *watcher_id* that was "
131+
"not returned to it by a previous call to :c:func:`PyType_AddWatcher`."
132+
msgstr ""
133+
134+
msgid ""
135+
"On success, this function returns ``0``. On failure, this function returns "
136+
"``-1`` with an exception set."
137+
msgstr ""
138+
124139
msgid "Type of a type-watcher callback function."
125140
msgstr ""
126141

@@ -332,6 +347,17 @@ msgid ""
332347
"assigned, or 0 if a new tag could not be assigned."
333348
msgstr ""
334349

350+
msgid ""
351+
"Return true if instances of *type* support creating weak references, false "
352+
"otherwise. This function always succeeds. *type* must not be ``NULL``."
353+
msgstr ""
354+
355+
msgid ":ref:`weakrefobjects`"
356+
msgstr ""
357+
358+
msgid ":py:mod:`weakref`"
359+
msgstr ""
360+
335361
msgid "Creating Heap-Allocated Types"
336362
msgstr ""
337363

c-api/veryhigh.po

Lines changed: 14 additions & 8 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-11-11 14:15+0000\n"
11+
"POT-Creation-Date: 2025-11-13 18:32+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"
@@ -114,16 +114,11 @@ msgid ""
114114
"correctly."
115115
msgstr ""
116116

117-
msgid ""
118-
"This is a simplified interface to :c:func:`PyRun_InteractiveOneFlags` below, "
119-
"leaving *flags* set to ``NULL``."
120-
msgstr ""
121-
122117
msgid ""
123118
"Read and execute a single statement from a file associated with an "
124119
"interactive device according to the *flags* argument. The user will be "
125-
"prompted using ``sys.ps1`` and ``sys.ps2``. *filename* is decoded from the :"
126-
"term:`filesystem encoding and error handler`."
120+
"prompted using ``sys.ps1`` and ``sys.ps2``. *filename* must be a Python :"
121+
"class:`str` object."
127122
msgstr ""
128123

129124
msgid ""
@@ -134,6 +129,17 @@ msgid ""
134129
"specifically if needed.)"
135130
msgstr ""
136131

132+
msgid ""
133+
"This is a simplified interface to :c:func:`PyRun_InteractiveOneFlags` below, "
134+
"leaving *flags* set to ``NULL``."
135+
msgstr ""
136+
137+
msgid ""
138+
"Similar to :c:func:`PyRun_InteractiveOneObject`, but *filename* is a :c:expr:"
139+
"`const char*`, which is decoded from the :term:`filesystem encoding and "
140+
"error handler`."
141+
msgstr ""
142+
137143
msgid ""
138144
"This is a simplified interface to :c:func:`PyRun_InteractiveLoopFlags` "
139145
"below, leaving *flags* set to ``NULL``."

c-api/weakref.po

Lines changed: 6 additions & 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: 2025-11-11 14:15+0000\n"
11+
"POT-Creation-Date: 2025-11-13 18:32+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"
@@ -58,6 +58,11 @@ msgid ""
5858
"``NULL``, this will return ``NULL`` and raise :exc:`TypeError`."
5959
msgstr ""
6060

61+
msgid ""
62+
":c:func:`PyType_SUPPORTS_WEAKREFS` for checking if *ob* is weakly "
63+
"referenceable."
64+
msgstr ""
65+
6166
msgid ""
6267
"Return a weak reference proxy object for the object *ob*. This will always "
6368
"return a new reference, but is not guaranteed to create a new object; an "

0 commit comments

Comments
 (0)