Skip to content

Commit 7cb8ac8

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent b492510 commit 7cb8ac8

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

library/enum.po

Lines changed: 7 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-09-16 17:23+0000\n"
14+
"POT-Creation-Date: 2025-10-03 14:13+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -475,6 +475,7 @@ msgid ""
475475
msgstr ""
476476

477477
msgid ""
478+
">>> from enum import Enum\n"
478479
">>> from datetime import date\n"
479480
">>> class Weekday(Enum):\n"
480481
"... MONDAY = 1\n"
@@ -520,7 +521,7 @@ msgid ""
520521
msgstr ""
521522

522523
msgid ""
523-
">>> from enum import auto\n"
524+
">>> from enum import auto, Enum\n"
524525
">>> class PowersOfThree(Enum):\n"
525526
"... @staticmethod\n"
526527
"... def _generate_next_value_(name, start, count, last_values):\n"
@@ -553,7 +554,7 @@ msgid ""
553554
msgstr ""
554555

555556
msgid ""
556-
">>> from enum import StrEnum\n"
557+
">>> from enum import auto, StrEnum\n"
557558
">>> class Build(StrEnum):\n"
558559
"... DEBUG = auto()\n"
559560
"... OPTIMIZED = auto()\n"
@@ -592,6 +593,7 @@ msgid ""
592593
msgstr ""
593594

594595
msgid ""
596+
">>> from enum import auto, Enum\n"
595597
">>> class OtherStyle(Enum):\n"
596598
"... ALTERNATE = auto()\n"
597599
"... OTHER = auto()\n"
@@ -611,6 +613,7 @@ msgid ""
611613
msgstr ""
612614

613615
msgid ""
616+
">>> from enum import auto, Enum\n"
614617
">>> class OtherStyle(Enum):\n"
615618
"... ALTERNATE = auto()\n"
616619
"... OTHER = auto()\n"
@@ -629,6 +632,7 @@ msgid ""
629632
msgstr ""
630633

631634
msgid ""
635+
">>> from enum import auto, Enum\n"
632636
">>> class OtherStyle(Enum):\n"
633637
"... ALTERNATE = auto()\n"
634638
"... OTHER = auto()\n"

library/hashlib.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-09-16 17:23+0000\n"
14+
"POT-Creation-Date: 2025-10-03 14:13+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -296,8 +296,8 @@ msgid "Example:"
296296
msgstr "Przykład:"
297297

298298
msgid ""
299-
"Now raises a :exc:`BlockingIOError` if the file is opened in blocking mode. "
300-
"Previously, spurious null bytes were added to the digest."
299+
"Now raises a :exc:`BlockingIOError` if the file is opened in non-blocking "
300+
"mode. Previously, spurious null bytes were added to the digest."
301301
msgstr ""
302302

303303
msgid "Key derivation"

0 commit comments

Comments
 (0)