Skip to content

Commit f583a1a

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 8b7beaf commit f583a1a

File tree

7 files changed

+16
-6
lines changed

7 files changed

+16
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ 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-and-build.yml/badge.svg)
18-
![49.24% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-49.24%25-0.svg)
18+
![49.42% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-49.42%25-0.svg)
1919
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-3.55%25-0.svg)
2020
![18 tłumaczy](https://img.shields.io/badge/tłumaczy-18-0.svg)
2121
<!-- [[[end]]] -->

faq/library.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.11\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2023-04-28 14:13+0000\n"
16+
"POT-Creation-Date: 2023-05-18 02:02+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:52+0000\n"
1818
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2022\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

howto/argparse.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.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-04-28 14:13+0000\n"
14+
"POT-Creation-Date: 2023-05-18 02:02+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:52+0000\n"
1616
"Last-Translator: Seweryn Piórkowski <seweryn.piorkowski@gmail.com>, 2021\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

howto/functional.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.11\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-04-28 14:13+0000\n"
15+
"POT-Creation-Date: 2023-05-18 02:02+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:53+0000\n"
1717
"Last-Translator: Seweryn Piórkowski <seweryn.piorkowski@gmail.com>, 2021\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

howto/urllib2.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.11\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2023-04-28 14:13+0000\n"
16+
"POT-Creation-Date: 2023-05-18 02:02+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:53+0000\n"
1818
"Last-Translator: Igor Zubrycki <igorzubrycki@gmail.com>, 2021\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/ctypes.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.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-04-28 14:13+0000\n"
14+
"POT-Creation-Date: 2023-05-18 02:02+0000\n"
1515
"PO-Revision-Date: 2021-06-28 01:03+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/functions.po

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -340,17 +340,27 @@ msgid ""
340340
"When awaited, return the next item from the given :term:`asynchronous "
341341
"iterator`, or *default* if given and the iterator is exhausted."
342342
msgstr ""
343+
"W przypadku oczekiwania zwraca następny element z podanego :term:"
344+
"`asynchronicznego iteratora <asynchronous iterator>` lub wartość *default*, "
345+
"jeżeli jest ona podana, a iterator został wyczerpany."
343346

344347
msgid ""
345348
"This is the async variant of the :func:`next` builtin, and behaves similarly."
346349
msgstr ""
350+
"Jest to asynchroniczny wariant wbudowanej funkcji :func:`next` i zachowuje "
351+
"się podobnie."
347352

348353
msgid ""
349354
"This calls the :meth:`~object.__anext__` method of *async_iterator*, "
350355
"returning an :term:`awaitable`. Awaiting this returns the next value of the "
351356
"iterator. If *default* is given, it is returned if the iterator is "
352357
"exhausted, otherwise :exc:`StopAsyncIteration` is raised."
353358
msgstr ""
359+
"Wywołuje to metodę :meth:`~object.__anext__` *async_iteratora*, zwracając :"
360+
"term:`awaitable`. Oczekiwanie zwraca następną wartość iteratora. Jeśli "
361+
"podano wartość *default*, jest ona zwracana, jeśli iterator zostanie "
362+
"wyczerpany, w przeciwnym razie zostanie podniesiony wyjątek :exc:"
363+
"`StopAsyncIteration`."
354364

355365
msgid ""
356366
"Return ``True`` if any element of the *iterable* is true. If the iterable "

0 commit comments

Comments
 (0)