Skip to content

Commit 32e1fb0

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent d835d5c commit 32e1fb0

File tree

13 files changed

+53
-51
lines changed

13 files changed

+53
-51
lines changed

c-api/cell.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.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-10-18 14:17+0000\n"
14+
"POT-Creation-Date: 2024-11-08 14:16+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1616
"Last-Translator: Waldemar Stoczkowski, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/memoryview.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.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-10-18 14:17+0000\n"
14+
"POT-Creation-Date: 2024-11-08 14:16+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
1616
"Last-Translator: haaritsubaki, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/stable.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.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-10-18 14:17+0000\n"
14+
"POT-Creation-Date: 2024-11-08 14:16+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:50+0000\n"
1616
"Last-Translator: Maciej Olko <[email protected]>, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/pyclbr.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.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-10-18 14:17+0000\n"
15+
"POT-Creation-Date: 2024-11-08 14:16+0000\n"
1616
"PO-Revision-Date: 2021-06-28 01:11+0000\n"
1717
"Last-Translator: Maciej Olko <[email protected]>, 2024\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/time.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-11-01 14:17+0000\n"
16+
"POT-Creation-Date: 2024-11-12 08:36+0000\n"
1717
"PO-Revision-Date: 2021-06-28 01:15+0000\n"
1818
"Last-Translator: Maciej Olko <[email protected]>, 2024\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -421,8 +421,8 @@ msgid ""
421421
"time slice to any other thread that is ready to run. If there are no other "
422422
"threads ready to run, the function returns immediately, and the thread "
423423
"continues execution. On Windows 8.1 and newer the implementation uses a "
424-
"`high-resolution timer <https://docs.microsoft.com/en-us/windows-hardware/"
425-
"drivers/kernel/high-resolution-timers>`_ which provides resolution of 100 "
424+
"`high-resolution timer <https://learn.microsoft.com/windows-hardware/drivers/"
425+
"kernel/high-resolution-timers>`_ which provides resolution of 100 "
426426
"nanoseconds. If *secs* is zero, ``Sleep(0)`` is used."
427427
msgstr ""
428428

reference/compound_stmts.po

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-11-01 14:17+0000\n"
16+
"POT-Creation-Date: 2024-11-12 08:36+0000\n"
1717
"PO-Revision-Date: 2021-06-28 01:19+0000\n"
1818
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -515,18 +515,15 @@ msgid ""
515515
"enter = type(manager).__enter__\n"
516516
"exit = type(manager).__exit__\n"
517517
"value = enter(manager)\n"
518-
"hit_except = False\n"
519518
"\n"
520519
"try:\n"
521520
" TARGET = value\n"
522521
" SUITE\n"
523522
"except:\n"
524-
" hit_except = True\n"
525523
" if not exit(manager, *sys.exc_info()):\n"
526524
" raise\n"
527-
"finally:\n"
528-
" if not hit_except:\n"
529-
" exit(manager, None, None, None)"
525+
"else:\n"
526+
" exit(manager, None, None, None)"
530527
msgstr ""
531528

532529
msgid ""

reference/datamodel.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ msgid ""
1717
msgstr ""
1818
"Project-Id-Version: Python 3.13\n"
1919
"Report-Msgid-Bugs-To: \n"
20-
"POT-Creation-Date: 2024-11-08 14:16+0000\n"
20+
"POT-Creation-Date: 2024-11-12 08:36+0000\n"
2121
"PO-Revision-Date: 2021-06-28 01:19+0000\n"
2222
"Last-Translator: Wiktor Matuszewski <[email protected]>, 2024\n"
2323
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -981,7 +981,7 @@ msgstr ""
981981

982982
msgid ""
983983
"Setting :attr:`!__loader__` on a module while failing to set :attr:`!"
984-
"__spec__.loader` is deprecated. In Python 3.14, :attr:`!__loader__` will "
984+
"__spec__.loader` is deprecated. In Python 3.16, :attr:`!__loader__` will "
985985
"cease to be set or taken into consideration by the import system or the "
986986
"standard library."
987987
msgstr ""

tutorial/floatingpoint.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.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-10-18 14:17+0000\n"
15+
"POT-Creation-Date: 2024-11-08 14:16+0000\n"
1616
"PO-Revision-Date: 2021-06-28 01:50+0000\n"
1717
"Last-Translator: Maciej Olko <[email protected]>, 2024\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

tutorial/modules.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.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-10-18 14:17+0000\n"
15+
"POT-Creation-Date: 2024-11-08 14:16+0000\n"
1616
"PO-Revision-Date: 2021-06-28 01:50+0000\n"
1717
"Last-Translator: Maciej Olko <[email protected]>, 2024\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

tutorial/whatnow.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-10-18 14:17+0000\n"
16+
"POT-Creation-Date: 2024-11-08 14:16+0000\n"
1717
"PO-Revision-Date: 2021-06-28 01:50+0000\n"
1818
"Last-Translator: Maciej Olko <[email protected]>, 2024\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

0 commit comments

Comments
 (0)