Skip to content

Commit efdf127

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 423af52 commit efdf127

File tree

23 files changed

+132
-133
lines changed

23 files changed

+132
-133
lines changed

c-api/conversion.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-03 14:40+0000\n"
11+
"POT-Creation-Date: 2026-03-23 14:50+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1313
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"
1414
"hu/)\n"

howto/enum.po

Lines changed: 4 additions & 94 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: 2026-03-23 14:50+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: Hungarian (https://app.transifex.com/python-doc/teams/5390/"
1414
"hu/)\n"
@@ -1250,102 +1250,12 @@ msgstr ""
12501250
msgid "Finer Points"
12511251
msgstr ""
12521252

1253-
msgid "Supported ``__dunder__`` names"
1253+
msgid "Supported ``__dunder__`` and ``_sunder_`` names"
12541254
msgstr ""
12551255

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

13511261
msgid "_Private__names"

howto/remote_debugging.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-03 14:40+0000\n"
11+
"POT-Creation-Date: 2026-03-23 14:50+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1313
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"
1414
"hu/)\n"

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-19 14:42+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: Hungarian (https://app.transifex.com/python-doc/teams/5390/"
1414
"hu/)\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/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: Hungarian (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: Hungarian (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
@@ -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:01+0000\n"
1616
"Last-Translator: Transifex Bot <>, 2025\n"
1717
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"
@@ -454,6 +454,31 @@ msgid ""
454454
"during class creation)."
455455
msgstr ""
456456

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

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

519557
msgid ""
@@ -529,6 +567,10 @@ msgid ""
529567
"9"
530568
msgstr ""
531569

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

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

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

10621108
msgid "Supported ``_sunder_`` names"
@@ -1089,16 +1135,6 @@ msgid ""
10891135
"an enum member; may be overridden"
10901136
msgstr ""
10911137

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

library/exceptions.po

Lines changed: 7 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-11 14:42+0000\n"
11+
"POT-Creation-Date: 2026-03-25 14:54+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1313
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"
1414
"hu/)\n"
@@ -939,6 +939,12 @@ msgid ""
939939
"`TypeError` if any contained exception is not an :exc:`Exception` subclass."
940940
msgstr ""
941941

942+
msgid ""
943+
"The ``excs`` parameter may be any sequence, but lists and tuples are "
944+
"specifically processed more efficiently here. For optimal performance, pass "
945+
"a tuple as ``excs``."
946+
msgstr ""
947+
942948
msgid "The ``msg`` argument to the constructor. This is a read-only attribute."
943949
msgstr ""
944950

library/importlib.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: Hungarian (https://app.transifex.com/python-doc/teams/5390/"

library/pathlib.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: Hungarian (https://app.transifex.com/python-doc/teams/5390/"

0 commit comments

Comments
 (0)