Skip to content

Commit b32dbbc

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 874dfd3 commit b32dbbc

33 files changed

+142
-143
lines changed

c-api/abstract.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: 2026-03-05 14:41+0000\n"
15+
"POT-Creation-Date: 2026-03-25 14:54+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/"

c-api/conversion.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-05 14:41+0000\n"
14+
"POT-Creation-Date: 2026-03-25 14:54+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/"

howto/enum.po

Lines changed: 4 additions & 94 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-25 14:54+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/"
@@ -1254,102 +1254,12 @@ msgstr ""
12541254
msgid "Finer Points"
12551255
msgstr ""
12561256

1257-
msgid "Supported ``__dunder__`` names"
1257+
msgid "Supported ``__dunder__`` and ``_sunder_`` names"
12581258
msgstr ""
12591259

12601260
msgid ""
1261-
":attr:`~enum.EnumType.__members__` is a read-only ordered mapping of "
1262-
"``member_name``:``member`` items. It is only available on the class."
1263-
msgstr ""
1264-
1265-
msgid ""
1266-
":meth:`~object.__new__`, if specified, must create and return the enum "
1267-
"members; it is also a very good idea to set the member's :attr:`~Enum."
1268-
"_value_` appropriately. Once all the members are created it is no longer "
1269-
"used."
1270-
msgstr ""
1271-
1272-
msgid "Supported ``_sunder_`` names"
1273-
msgstr ""
1274-
1275-
msgid ":attr:`~Enum._name_` -- name of the member"
1276-
msgstr ""
1277-
1278-
msgid ":attr:`~Enum._value_` -- value of the member; can be set in ``__new__``"
1279-
msgstr ""
1280-
1281-
msgid ""
1282-
":meth:`~Enum._missing_` -- a lookup function used when a value is not found; "
1283-
"may be overridden"
1284-
msgstr ""
1285-
1286-
msgid ""
1287-
":attr:`~Enum._ignore_` -- a list of names, either as a :class:`list` or a :"
1288-
"class:`str`, that will not be transformed into members, and will be removed "
1289-
"from the final class"
1290-
msgstr ""
1291-
1292-
msgid ""
1293-
":meth:`~Enum._generate_next_value_` -- used to get an appropriate value for "
1294-
"an enum member; may be overridden"
1295-
msgstr ""
1296-
1297-
msgid ""
1298-
":meth:`~Enum._add_alias_` -- adds a new name as an alias to an existing "
1299-
"member."
1300-
msgstr ""
1301-
1302-
msgid ""
1303-
":meth:`~Enum._add_value_alias_` -- adds a new value as an alias to an "
1304-
"existing member. See `MultiValueEnum`_ for an example."
1305-
msgstr ""
1306-
1307-
msgid ""
1308-
"For standard :class:`Enum` classes the next value chosen is the highest "
1309-
"value seen incremented by one."
1310-
msgstr ""
1311-
1312-
msgid ""
1313-
"For :class:`Flag` classes the next value chosen will be the next highest "
1314-
"power-of-two."
1315-
msgstr ""
1316-
1317-
msgid ""
1318-
"Prior versions would use the last seen value instead of the highest value."
1319-
msgstr ""
1320-
1321-
msgid "``_missing_``, ``_order_``, ``_generate_next_value_``"
1322-
msgstr ""
1323-
1324-
msgid "``_ignore_``"
1325-
msgstr ""
1326-
1327-
msgid "``_add_alias_``, ``_add_value_alias_``"
1328-
msgstr ""
1329-
1330-
msgid ""
1331-
"To help keep Python 2 / Python 3 code in sync an :attr:`~Enum._order_` "
1332-
"attribute can be provided. It will be checked against the actual order of "
1333-
"the enumeration and raise an error if the two do not match::"
1334-
msgstr ""
1335-
1336-
msgid ""
1337-
">>> class Color(Enum):\n"
1338-
"... _order_ = 'RED GREEN BLUE'\n"
1339-
"... RED = 1\n"
1340-
"... BLUE = 3\n"
1341-
"... GREEN = 2\n"
1342-
"...\n"
1343-
"Traceback (most recent call last):\n"
1344-
"...\n"
1345-
"TypeError: member order does not match _order_:\n"
1346-
" ['RED', 'BLUE', 'GREEN']\n"
1347-
" ['RED', 'GREEN', 'BLUE']"
1348-
msgstr ""
1349-
1350-
msgid ""
1351-
"In Python 2 code the :attr:`~Enum._order_` attribute is necessary as "
1352-
"definition order is lost before it can be recorded."
1261+
"The supported ``__dunder__`` and ``_sunder_`` names can be found in the :ref:"
1262+
"`Enum API documentation <enum-dunder-sunder>`."
13531263
msgstr ""
13541264

13551265
msgid "_Private__names"

howto/remote_debugging.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-05 14:41+0000\n"
14+
"POT-Creation-Date: 2026-03-25 14:54+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/ast.po

Lines changed: 9 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: 2026-03-21 14:21+0000\n"
11+
"POT-Creation-Date: 2026-03-25 14:54+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"
@@ -331,6 +331,14 @@ msgid ""
331331
"represented as tuples."
332332
msgstr ""
333333

334+
msgid ""
335+
"AST node constructors were changed to provide sensible defaults for omitted "
336+
"fields: optional fields now default to ``None``, list fields default to an "
337+
"empty list, and fields of type :class:`!ast.expr_context` default to :class:"
338+
"`Load() <ast.Load>`. Previously, omitted attributes would not exist on "
339+
"constructed nodes (accessing them raised :exc:`AttributeError`)."
340+
msgstr ""
341+
334342
msgid ""
335343
"The :meth:`~object.__repr__` output of :class:`~ast.AST` nodes includes the "
336344
"values of the node fields."

library/builtins.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: 2026-03-05 14:41+0000\n"
15+
"POT-Creation-Date: 2026-03-25 14:54+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/"

library/codecs.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-03 14:40+0000\n"
14+
"POT-Creation-Date: 2026-03-23 14:50+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/email.encoders.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-03 14:40+0000\n"
14+
"POT-Creation-Date: 2026-03-23 14:50+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/"

library/email.policy.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-03 14:40+0000\n"
14+
"POT-Creation-Date: 2026-03-23 14:50+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/"

library/enum.po

Lines changed: 50 additions & 14 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-23 14:50+0000\n"
15+
"POT-Creation-Date: 2026-03-25 14:54+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1717
"Last-Translator: Transifex Bot <>, 2025\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -455,6 +455,31 @@ msgid ""
455455
"during class creation)."
456456
msgstr ""
457457

458+
msgid ""
459+
"The :attr:`~Enum._order_` attribute can be provided to help keep Python 2 / "
460+
"Python 3 code in sync. It will be checked against the actual order of the "
461+
"enumeration and raise an error if the two do not match::"
462+
msgstr ""
463+
464+
msgid ""
465+
">>> class Color(Enum):\n"
466+
"... _order_ = 'RED GREEN BLUE'\n"
467+
"... RED = 1\n"
468+
"... BLUE = 3\n"
469+
"... GREEN = 2\n"
470+
"...\n"
471+
"Traceback (most recent call last):\n"
472+
"...\n"
473+
"TypeError: member order does not match _order_:\n"
474+
" ['RED', 'BLUE', 'GREEN']\n"
475+
" ['RED', 'GREEN', 'BLUE']"
476+
msgstr ""
477+
478+
msgid ""
479+
"In Python 2 code the :attr:`~Enum._order_` attribute is necessary as "
480+
"definition order is lost before it can be recorded."
481+
msgstr ""
482+
458483
msgid ""
459484
"``_ignore_`` is only used during creation and is removed from the "
460485
"enumeration once creation is complete."
@@ -514,7 +539,20 @@ msgstr ""
514539

515540
msgid ""
516541
"A *staticmethod* that is used to determine the next value returned by :class:"
517-
"`auto`::"
542+
"`auto`."
543+
msgstr ""
544+
545+
msgid ""
546+
"For standard :class:`Enum` classes the next value chosen is the highest "
547+
"value seen incremented by one."
548+
msgstr ""
549+
550+
msgid ""
551+
"For :class:`Flag` classes the next value chosen will be the next highest "
552+
"power-of-two."
553+
msgstr ""
554+
555+
msgid "This method may be overridden, e.g.::"
518556
msgstr ""
519557

520558
msgid ""
@@ -530,6 +568,10 @@ msgid ""
530568
"9"
531569
msgstr ""
532570

571+
msgid ""
572+
"Prior versions would use the last seen value instead of the highest value."
573+
msgstr ""
574+
533575
msgid ""
534576
"By default, does nothing. If multiple values are given in the member "
535577
"assignment, those values become separate arguments to ``__init__``; e.g."
@@ -678,6 +720,9 @@ msgid ""
678720
"member."
679721
msgstr ""
680722

723+
msgid "See :ref:`multi-value-enum` for an example."
724+
msgstr ""
725+
681726
msgid ""
682727
"*IntEnum* is the same as :class:`Enum`, but its members are also integers "
683728
"and can be used anywhere that an integer can be used. If any integer "
@@ -1056,8 +1101,9 @@ msgstr ""
10561101

10571102
msgid ""
10581103
":meth:`~Enum.__new__`, if specified, must create and return the enum "
1059-
"members; it is also a very good idea to set the member's :attr:`!_value_` "
1060-
"appropriately. Once all the members are created it is no longer used."
1104+
"members; it is also a very good idea to set the member's :attr:`~Enum."
1105+
"_value_` appropriately. Once all the members are created it is no longer "
1106+
"used."
10611107
msgstr ""
10621108

10631109
msgid "Supported ``_sunder_`` names"
@@ -1090,16 +1136,6 @@ msgid ""
10901136
"an enum member; may be overridden"
10911137
msgstr ""
10921138

1093-
msgid ""
1094-
"For standard :class:`Enum` classes the next value chosen is the highest "
1095-
"value seen incremented by one."
1096-
msgstr ""
1097-
1098-
msgid ""
1099-
"For :class:`Flag` classes the next value chosen will be the next highest "
1100-
"power-of-two."
1101-
msgstr ""
1102-
11031139
msgid ""
11041140
":meth:`~Enum._add_alias_` -- adds a new name as an alias to an existing "
11051141
"member."

0 commit comments

Comments
 (0)