Skip to content

Commit 8f9a89a

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 77cadb0 commit 8f9a89a

4 files changed

Lines changed: 52 additions & 23 deletions

File tree

README.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update-
1818
[![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml)
1919
[![core 100.00%](https://img.shields.io/badge/core-100.00%25-0.svg)](https://translations.python.org/#pl)
2020
[![Total Translation of Documentation](https://img.shields.io/badge/total_words-5.72%25-0.svg)](https://translations.python.org/#pl)
21-
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-12.51%25-0.svg)](https://translations.python.org/#pl)
21+
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-12.50%25-0.svg)](https://translations.python.org/#pl)
2222
[![lint errors count](https://shields.io/badge/dynamic/xml?url=https%3A%2F%2Ftranslations.python.org%2Fbuild-details.html&query=%2F%2Ftr%5Btd%5B%40data-label%3D%27language%27%20and%20contains%28.%2C%20%27%28pl%29%27%29%5D%5D%20%20%20%2F%2Ftd%5B%40data-label%3D%27lint%27%5D%2Fa%2Ftext()&label=lint%20errors)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml)
2323

2424
<!-- [[[end]]] -->

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update-
1818
[![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml)
1919
[![podstawowe artykuły 100.00%](https://img.shields.io/badge/podstawowe_artykuły-100.00%25-0.svg)](https://translations.python.org/#pl)
2020
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_słów-5.72%25-0.svg)](https://translations.python.org/#pl)
21-
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-12.51%25-0.svg)](https://translations.python.org/#pl)
21+
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-12.50%25-0.svg)](https://translations.python.org/#pl)
2222
[![liczba błędów lintowania](https://shields.io/badge/dynamic/xml?url=https%3A%2F%2Ftranslations.python.org%2Fbuild-details.html&query=%2F%2Ftr%5Btd%5B%40data-label%3D%27language%27%20and%20contains%28.%2C%20%27%28pl%29%27%29%5D%5D%20%20%20%2F%2Ftd%5B%40data-label%3D%27lint%27%5D%2Fa%2Ftext()&label=b%C5%82%C4%99dy%20lintowania)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml)
2323

2424
<!-- [[[end]]] -->

glossary.po

Lines changed: 38 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.15\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2026-06-09 16:27+0000\n"
15+
"POT-Creation-Date: 2026-06-21 15:47+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2026\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -178,16 +178,21 @@ msgid "asynchronous generator"
178178
msgstr ""
179179

180180
msgid ""
181-
"A function which returns an :term:`asynchronous generator iterator`. It "
182-
"looks like a coroutine function defined with :keyword:`async def` except "
183-
"that it contains :keyword:`yield` expressions for producing a series of "
184-
"values usable in an :keyword:`async for` loop."
181+
"Informally used to mean either an :term:`asynchronous generator function` or "
182+
"an :term:`asynchronous generator iterator`, depending on context. The "
183+
"formal terms :term:`asynchronous generator function` and :term:`asynchronous "
184+
"generator iterator` are uncommon in practice; \"asynchronous generator\" "
185+
"alone is almost always sufficient."
186+
msgstr ""
187+
188+
msgid "asynchronous generator function"
185189
msgstr ""
186190

187191
msgid ""
188-
"Usually refers to an asynchronous generator function, but may refer to an "
189-
"*asynchronous generator iterator* in some contexts. In cases where the "
190-
"intended meaning isn't clear, using the full terms avoids ambiguity."
192+
"A function which returns an :term:`asynchronous generator iterator`. It "
193+
"looks like a coroutine function defined with :keyword:`async def` except "
194+
"that it contains :keyword:`yield` expressions for producing a series of "
195+
"values usable in an :keyword:`async for` loop. See :pep:`525`."
191196
msgstr ""
192197

193198
msgid ""
@@ -198,7 +203,7 @@ msgstr ""
198203
msgid "asynchronous generator iterator"
199204
msgstr ""
200205

201-
msgid "An object created by an :term:`asynchronous generator` function."
206+
msgid "An object created by an :term:`asynchronous generator function`."
202207
msgstr ""
203208

204209
msgid ""
@@ -1009,29 +1014,42 @@ msgid "generator"
10091014
msgstr "generator"
10101015

10111016
msgid ""
1012-
"A function which returns a :term:`generator iterator`. It looks like a "
1013-
"normal function except that it contains :keyword:`yield` expressions for "
1014-
"producing a series of values usable in a for-loop or that can be retrieved "
1015-
"one at a time with the :func:`next` function."
1017+
"Informally used to mean either a :term:`generator function` or a :term:"
1018+
"`generator iterator`, depending on context. The formal terms :term:"
1019+
"`generator function` and :term:`generator iterator` are uncommon in "
1020+
"practice; \"generator\" alone is almost always sufficient."
1021+
msgstr ""
1022+
1023+
msgid "generator function"
10161024
msgstr ""
10171025

10181026
msgid ""
1019-
"Usually refers to a generator function, but may refer to a *generator "
1020-
"iterator* in some contexts. In cases where the intended meaning isn't "
1021-
"clear, using the full terms avoids ambiguity."
1027+
"A function which returns a :term:`generator` object. It looks like a normal "
1028+
"function except that it contains :keyword:`yield` expressions for producing "
1029+
"a series of values usable in a :keyword:`for`\\-loop or that can be "
1030+
"retrieved one at a time with the :func:`next` function. See :ref:`yieldexpr`."
10221031
msgstr ""
10231032

10241033
msgid "generator iterator"
10251034
msgstr ""
10261035

1027-
msgid "An object created by a :term:`generator` function."
1036+
msgid ""
1037+
"An object created by a :term:`generator function` or a :term:`generator "
1038+
"expression`."
10281039
msgstr ""
10291040

10301041
msgid ""
10311042
"Each :keyword:`yield` temporarily suspends processing, remembering the "
1032-
"execution state (including local variables and pending try-statements). "
1033-
"When the *generator iterator* resumes, it picks up where it left off (in "
1034-
"contrast to functions which start fresh on every invocation)."
1043+
"execution state (including local variables and pending try-statements). When "
1044+
"the *generator iterator* resumes, it picks up where it left off (in contrast "
1045+
"to functions which start fresh on every invocation)."
1046+
msgstr ""
1047+
1048+
msgid ""
1049+
"Generator iterators also implement the :meth:`~generator.send` method to "
1050+
"send a value into the suspended generator, and the :meth:`~generator.throw` "
1051+
"method to raise an exception at the point where the generator was paused. "
1052+
"See :ref:`generator-methods`."
10351053
msgstr ""
10361054

10371055
msgid "generator expression"

whatsnew/changelog.po

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.15\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-06-19 16:29+0000\n"
14+
"POT-Creation-Date: 2026-06-21 15:47+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1616
"Last-Translator: python-doc bot, 2026\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -47,6 +47,11 @@ msgstr ""
4747
msgid ":gh:`151159`: Updated bundled version of OpenSSL to 3.5.7."
4848
msgstr ""
4949

50+
msgid ""
51+
":gh:`150836`: Make installed tkinter work with Tcl/Tk 9 builds that embed "
52+
"the Tk script library in the Tk DLL on Windows."
53+
msgstr ""
54+
5055
msgid "Tests"
5156
msgstr "Testy"
5257

@@ -94,6 +99,12 @@ msgstr ""
9499
msgid "Library"
95100
msgstr "Biblioteka"
96101

102+
msgid ""
103+
":gh:`151770`: Fix :meth:`datetime.datetime.fromisoformat` raising :exc:"
104+
"`AssertionError` instead of :exc:`ValueError` for an out-of-range month "
105+
"combined with a ``24:00`` time."
106+
msgstr ""
107+
97108
msgid ""
98109
":gh:`151695`: Fix a use-after-free in the :mod:`curses` module. The "
99110
"encoding of the initial screen, used by :func:`curses.unctrl` and :func:"

0 commit comments

Comments
 (0)