Skip to content

Commit 6f0107f

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent d070971 commit 6f0107f

28 files changed

+172
-198
lines changed

about.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.14\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-08-17 14:16+0000\n"
15+
"POT-Creation-Date: 2025-09-05 14:17+0000\n"
1616
"PO-Revision-Date: 2025-08-02 17:33+0000\n"
1717
"Last-Translator: Rizki ANANDA, 2025\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

c-api/hash.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: 2025-08-17 14:16+0000\n"
14+
"POT-Creation-Date: 2025-09-05 14:17+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:33+0000\n"
1616
"Last-Translator: Danny Steveson, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

faq/design.po

Lines changed: 3 additions & 3 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-27 14:18+0000\n"
14+
"POT-Creation-Date: 2025-09-07 14:14+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:33+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -1046,9 +1046,9 @@ msgid ""
10461046
"An appropriate testing discipline can help build large complex applications "
10471047
"in Python as well as having interface specifications would. In fact, it can "
10481048
"be better because an interface specification cannot test certain properties "
1049-
"of a program. For example, the :meth:`!list.append` method is expected to "
1049+
"of a program. For example, the :meth:`list.append` method is expected to "
10501050
"add new elements to the end of some internal list; an interface "
1051-
"specification cannot test that your :meth:`!list.append` implementation will "
1051+
"specification cannot test that your :meth:`list.append` implementation will "
10521052
"actually do this correctly, but it's trivial to check this property in a "
10531053
"test suite."
10541054
msgstr ""

faq/programming.po

Lines changed: 7 additions & 6 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-27 14:18+0000\n"
14+
"POT-Creation-Date: 2025-09-07 14:14+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:33+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -764,9 +764,9 @@ msgstr ""
764764
"Списки :term:`mutable`, що означає, що ви можете змінювати їхній вміст."
765765

766766
msgid ""
767-
"After the call to :meth:`!append`, the content of the mutable object has "
768-
"changed from ``[]`` to ``[10]``. Since both the variables refer to the same "
769-
"object, using either name accesses the modified value ``[10]``."
767+
"After the call to :meth:`~sequence.append`, the content of the mutable "
768+
"object has changed from ``[]`` to ``[10]``. Since both the variables refer "
769+
"to the same object, using either name accesses the modified value ``[10]``."
770770
msgstr ""
771771

772772
msgid "If we instead assign an immutable object to ``x``::"
@@ -2221,8 +2221,9 @@ msgid ""
22212221
"an :meth:`~object.__iadd__` magic method, it gets called when the ``+=`` "
22222222
"augmented assignment is executed, and its return value is what gets used in "
22232223
"the assignment statement; and (b) for lists, :meth:`!__iadd__` is equivalent "
2224-
"to calling :meth:`!extend` on the list and returning the list. That's why "
2225-
"we say that for lists, ``+=`` is a \"shorthand\" for :meth:`!list.extend`::"
2224+
"to calling :meth:`~sequence.extend` on the list and returning the list. "
2225+
"That's why we say that for lists, ``+=`` is a \"shorthand\" for :meth:`list."
2226+
"extend`::"
22262227
msgstr ""
22272228

22282229
msgid ""

glossary.po

Lines changed: 6 additions & 6 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-27 14:18+0000\n"
14+
"POT-Creation-Date: 2025-09-07 14:14+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:33+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -2288,11 +2288,11 @@ msgstr ""
22882288
msgid ""
22892289
"The :class:`collections.abc.Sequence` abstract base class defines a much "
22902290
"richer interface that goes beyond just :meth:`~object.__getitem__` and :meth:"
2291-
"`~object.__len__`, adding :meth:`!count`, :meth:`!index`, :meth:`~object."
2292-
"__contains__`, and :meth:`~object.__reversed__`. Types that implement this "
2293-
"expanded interface can be registered explicitly using :func:`~abc.ABCMeta."
2294-
"register`. For more documentation on sequence methods generally, see :ref:"
2295-
"`Common Sequence Operations <typesseq-common>`."
2291+
"`~object.__len__`, adding :meth:`~sequence.count`, :meth:`~sequence.index`, :"
2292+
"meth:`~object.__contains__`, and :meth:`~object.__reversed__`. Types that "
2293+
"implement this expanded interface can be registered explicitly using :func:"
2294+
"`~abc.ABCMeta.register`. For more documentation on sequence methods "
2295+
"generally, see :ref:`Common Sequence Operations <typesseq-common>`."
22962296
msgstr ""
22972297

22982298
msgid "set comprehension"

library/bisect.po

Lines changed: 5 additions & 5 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-27 14:18+0000\n"
14+
"POT-Creation-Date: 2025-09-07 14:14+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:33+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -104,8 +104,8 @@ msgstr ""
104104

105105
msgid ""
106106
"This function first runs :py:func:`~bisect.bisect_left` to locate an "
107-
"insertion point. Next, it runs the :meth:`!insert` method on *a* to insert "
108-
"*x* at the appropriate position to maintain sort order."
107+
"insertion point. Next, it runs the :meth:`~sequence.insert` method on *a* to "
108+
"insert *x* at the appropriate position to maintain sort order."
109109
msgstr ""
110110

111111
msgid ""
@@ -125,8 +125,8 @@ msgstr ""
125125

126126
msgid ""
127127
"This function first runs :py:func:`~bisect.bisect_right` to locate an "
128-
"insertion point. Next, it runs the :meth:`!insert` method on *a* to insert "
129-
"*x* at the appropriate position to maintain sort order."
128+
"insertion point. Next, it runs the :meth:`~sequence.insert` method on *a* to "
129+
"insert *x* at the appropriate position to maintain sort order."
130130
msgstr ""
131131

132132
msgid "Performance Notes"

library/collections.abc.po

Lines changed: 9 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: 2025-09-05 14:17+0000\n"
14+
"POT-Creation-Date: 2025-09-07 14:14+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:33+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -460,12 +460,12 @@ msgstr ""
460460

461461
msgid ""
462462
"Implementation note: Some of the mixin methods, such as :meth:`~container."
463-
"__iter__`, :meth:`~object.__reversed__` and :meth:`index`, make repeated "
464-
"calls to the underlying :meth:`~object.__getitem__` method. Consequently, "
465-
"if :meth:`~object.__getitem__` is implemented with constant access speed, "
466-
"the mixin methods will have linear performance; however, if the underlying "
467-
"method is linear (as it would be with a linked list), the mixins will have "
468-
"quadratic performance and will likely need to be overridden."
463+
"__iter__`, :meth:`~object.__reversed__`, and :meth:`~sequence.index` make "
464+
"repeated calls to the underlying :meth:`~object.__getitem__` method. "
465+
"Consequently, if :meth:`~object.__getitem__` is implemented with constant "
466+
"access speed, the mixin methods will have linear performance; however, if "
467+
"the underlying method is linear (as it would be with a linked list), the "
468+
"mixins will have quadratic performance and will likely need to be overridden."
469469
msgstr ""
470470

471471
msgid "Return first index of *value*."
@@ -479,7 +479,8 @@ msgid ""
479479
msgstr ""
480480

481481
msgid ""
482-
"The :meth:`!index` method added support for *stop* and *start* arguments."
482+
"The :meth:`~sequence.index` method gained support for the *stop* and *start* "
483+
"arguments."
483484
msgstr ""
484485

485486
msgid "ABCs for read-only and mutable :ref:`sets <types-set>`."

library/collections.po

Lines changed: 4 additions & 4 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-27 14:18+0000\n"
14+
"POT-Creation-Date: 2025-09-07 14:14+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:33+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -1088,10 +1088,10 @@ msgstr ""
10881088
msgid ""
10891089
"When each key is encountered for the first time, it is not already in the "
10901090
"mapping; so an entry is automatically created using the :attr:`~defaultdict."
1091-
"default_factory` function which returns an empty :class:`list`. The :meth:`!"
1092-
"list.append` operation then attaches the value to the new list. When keys "
1091+
"default_factory` function which returns an empty :class:`list`. The :meth:"
1092+
"`list.append` operation then attaches the value to the new list. When keys "
10931093
"are encountered again, the look-up proceeds normally (returning the list for "
1094-
"that key) and the :meth:`!list.append` operation adds another value to the "
1094+
"that key) and the :meth:`list.append` operation adds another value to the "
10951095
"list. This technique is simpler and faster than an equivalent technique "
10961096
"using :meth:`dict.setdefault`:"
10971097
msgstr ""

library/dis.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: 2025-08-17 14:16+0000\n"
14+
"POT-Creation-Date: 2025-09-05 14:17+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:34+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

library/pickle.po

Lines changed: 5 additions & 5 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-27 14:18+0000\n"
14+
"POT-Creation-Date: 2025-09-07 14:14+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:34+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -1125,10 +1125,10 @@ msgid ""
11251125
"These items will be appended to the object either using ``obj.append(item)`` "
11261126
"or, in batch, using ``obj.extend(list_of_items)``. This is primarily used "
11271127
"for list subclasses, but may be used by other classes as long as they have :"
1128-
"ref:`append and extend methods <typesseq-common>` with the appropriate "
1129-
"signature. (Whether :meth:`!append` or :meth:`!extend` is used depends on "
1130-
"which pickle protocol version is used as well as the number of items to "
1131-
"append, so both must be supported.)"
1128+
"meth:`~sequence.append` and :meth:`~sequence.extend` methods with the "
1129+
"appropriate signature. (Whether :meth:`!append` or :meth:`!extend` is used "
1130+
"depends on which pickle protocol version is used as well as the number of "
1131+
"items to append, so both must be supported.)"
11321132
msgstr ""
11331133

11341134
msgid ""

0 commit comments

Comments
 (0)