Skip to content

Commit 46e88cc

Browse files
GitHub Action's update-translation jobm-aciek
authored andcommitted
Update translation from Transifex
1 parent 343a8fd commit 46e88cc

16 files changed

+165
-62
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ f'''![build](https://github.com/python/python-docs-pl/workflows/.github/workflow
1515
![{translators} tłumaczy](https://img.shields.io/badge/tłumaczy-{translators}-0.svg)''')
1616
]]] -->
1717
![build](https://github.com/python/python-docs-pl/workflows/.github/workflows/update-lint-and-build.yml/badge.svg)
18-
![55.07% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-55.07%25-0.svg)
19-
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-3.11%25-0.svg)
18+
![55.01% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-55.01%25-0.svg)
19+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-3.10%25-0.svg)
2020
![21 tłumaczy](https://img.shields.io/badge/tłumaczy-21-0.svg)
2121
<!-- [[[end]]] -->
2222

glossary.po

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.13\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2024-05-31 14:14+0000\n"
19+
"POT-Creation-Date: 2024-06-07 14:15+0000\n"
2020
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
2121
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
2222
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -647,6 +647,16 @@ msgid ""
647647
"rounded *downward*. See :pep:`238`."
648648
msgstr ""
649649

650+
msgid "free threading"
651+
msgstr ""
652+
653+
msgid ""
654+
"A threading model where multiple threads can run Python bytecode "
655+
"simultaneously within the same interpreter. This is in contrast to the :"
656+
"term:`global interpreter lock` which allows only one thread to execute "
657+
"Python bytecode at a time. See :pep:`703`."
658+
msgstr ""
659+
650660
msgid "function"
651661
msgstr "funkcja"
652662

howto/gdb_helpers.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-05-11 18:37+0000\n"
14+
"POT-Creation-Date: 2024-05-31 14:14+0000\n"
1515
"PO-Revision-Date: 2024-02-25 01:11+0000\n"
1616
"Last-Translator: Stefan Ocetkiewicz <stefan.ocetkiewicz@gmail.com>, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/exceptions.po

Lines changed: 4 additions & 3 deletions
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-05-24 14:15+0000\n"
14+
"POT-Creation-Date: 2024-06-07 14:15+0000\n"
1515
"PO-Revision-Date: 2021-06-28 01:05+0000\n"
1616
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -959,8 +959,9 @@ msgid ""
959959
msgstr ""
960960

961961
msgid ""
962-
"This method is used by :meth:`subgroup` and :meth:`split`. A subclass needs "
963-
"to override it in order to make :meth:`subgroup` and :meth:`split` return "
962+
"This method is used by :meth:`subgroup` and :meth:`split`, which are used in "
963+
"various contexts to break up an exception group. A subclass needs to "
964+
"override it in order to make :meth:`subgroup` and :meth:`split` return "
964965
"instances of the subclass rather than :exc:`ExceptionGroup`."
965966
msgstr ""
966967

library/functions.po

Lines changed: 4 additions & 2 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-05-31 14:14+0000\n"
16+
"POT-Creation-Date: 2024-06-07 14:15+0000\n"
1717
"PO-Revision-Date: 2021-06-28 01:06+0000\n"
1818
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2024\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -1836,7 +1836,9 @@ msgid ""
18361836
"2)`` returns ``100``, but ``pow(10, -2)`` returns ``0.01``. For a negative "
18371837
"base of type :class:`int` or :class:`float` and a non-integral exponent, a "
18381838
"complex result is delivered. For example, ``pow(-9, 0.5)`` returns a value "
1839-
"close to ``3j``."
1839+
"close to ``3j``. Whereas, for a negative base of type :class:`int` or :class:"
1840+
"`float` with an integral exponent, a float result is delivered. For example, "
1841+
"``pow(-9, 2.0)`` returns ``81.0``."
18401842
msgstr ""
18411843

18421844
msgid ""

library/functools.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-05-17 14:15+0000\n"
14+
"POT-Creation-Date: 2024-05-31 14:14+0000\n"
1515
"PO-Revision-Date: 2021-06-28 01:06+0000\n"
1616
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2021\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/importlib.metadata.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-05-17 14:15+0000\n"
14+
"POT-Creation-Date: 2024-05-31 14:14+0000\n"
1515
"PO-Revision-Date: 2021-06-28 01:08+0000\n"
1616
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2021\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/xml.etree.elementtree.po

Lines changed: 5 additions & 4 deletions
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-05-24 14:15+0000\n"
15+
"POT-Creation-Date: 2024-06-07 14:15+0000\n"
1616
"PO-Revision-Date: 2021-06-28 01:18+0000\n"
1717
"Last-Translator: Igor Zubrycki <igorzubrycki@gmail.com>, 2021\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -910,9 +910,10 @@ msgid ""
910910
msgstr ""
911911

912912
msgid ""
913-
"Caution: Elements with no subelements will test as ``False``. Testing the "
914-
"truth value of an Element is deprecated and will raise an exception in "
915-
"Python 3.14. Use specific ``len(elem)`` or ``elem is None`` test instead.::"
913+
"Caution: Elements with no subelements will test as ``False``. In a future "
914+
"release of Python, all elements will test as ``True`` regardless of whether "
915+
"subelements exist. Instead, prefer explicit ``len(elem)`` or ``elem is not "
916+
"None`` tests.::"
916917
msgstr ""
917918

918919
msgid "Testing the truth value of an Element emits :exc:`DeprecationWarning`."

library/zipfile.po

Lines changed: 7 additions & 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-05-24 14:15+0000\n"
15+
"POT-Creation-Date: 2024-06-07 14:15+0000\n"
1616
"PO-Revision-Date: 2021-06-28 01:18+0000\n"
1717
"Last-Translator: Waldemar Stoczkowski, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -588,6 +588,12 @@ msgstr ""
588588
msgid "Return ``True`` if the current context references a file."
589589
msgstr ""
590590

591+
msgid "Return ``True`` if the current context references a symbolic link."
592+
msgstr ""
593+
594+
msgid "Previously, ``is_symlink`` would unconditionally return ``False``."
595+
msgstr ""
596+
591597
msgid ""
592598
"Return ``True`` if the current context references a file or directory in the "
593599
"zip file."

reference/datamodel.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.13\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
19+
"POT-Creation-Date: 2024-06-07 14:15+0000\n"
2020
"PO-Revision-Date: 2021-06-28 01:19+0000\n"
2121
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
2222
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -1183,7 +1183,7 @@ msgstr ""
11831183
msgid ""
11841184
"The iterator returns :class:`tuple`\\s containing the ``(start_line, "
11851185
"end_line, start_column, end_column)``. The *i-th* tuple corresponds to the "
1186-
"position of the source code that compiled to the *i-th* instruction. Column "
1186+
"position of the source code that compiled to the *i-th* code unit. Column "
11871187
"information is 0-indexed utf-8 byte offsets on the given source line."
11881188
msgstr ""
11891189

@@ -1303,12 +1303,12 @@ msgid ""
13031303
msgstr ""
13041304

13051305
msgid ""
1306-
"The dictionary used by the frame to look up :ref:`local variables <naming>`. "
1307-
"If the frame refers to an :term:`optimized scope`, this may return a write-"
1306+
"The mapping used by the frame to look up :ref:`local variables <naming>`. If "
1307+
"the frame refers to an :term:`optimized scope`, this may return a write-"
13081308
"through proxy object."
13091309
msgstr ""
13101310

1311-
msgid "Return a proxy for functions and comprehensions."
1311+
msgid "Return a proxy for optimized scopes."
13121312
msgstr ""
13131313

13141314
msgid ""

0 commit comments

Comments
 (0)