File tree 7 files changed +16
-6
lines changed 7 files changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ f'''''')
16
16
]]] -->
17
17
![ 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 )
19
19
![ postęp tłumaczenia całości dokumentacji] ( https://img.shields.io/badge/całość-3.55%25-0.svg )
20
20
![ 18 tłumaczy] ( https://img.shields.io/badge/tłumaczy-18-0.svg )
21
21
<!-- [[[end]]] -->
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ msgid ""
13
13
msgstr ""
14
14
"Project-Id-Version : Python 3.11\n "
15
15
"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 "
17
17
"PO-Revision-Date : 2021-06-28 00:52+0000\n "
18
18
"Last-Translator : Maciej Olko <maciej.olko@gmail.com>, 2022\n "
19
19
"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version : Python 3.11\n "
13
13
"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 "
15
15
"PO-Revision-Date : 2021-06-28 00:52+0000\n "
16
16
"Last-Translator : Seweryn Piórkowski <seweryn.piorkowski@gmail.com>, 2021\n "
17
17
"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ msgid ""
12
12
msgstr ""
13
13
"Project-Id-Version : Python 3.11\n "
14
14
"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 "
16
16
"PO-Revision-Date : 2021-06-28 00:53+0000\n "
17
17
"Last-Translator : Seweryn Piórkowski <seweryn.piorkowski@gmail.com>, 2021\n "
18
18
"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ msgid ""
13
13
msgstr ""
14
14
"Project-Id-Version : Python 3.11\n "
15
15
"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 "
17
17
"PO-Revision-Date : 2021-06-28 00:53+0000\n "
18
18
"Last-Translator : Igor Zubrycki <igorzubrycki@gmail.com>, 2021\n "
19
19
"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version : Python 3.11\n "
13
13
"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 "
15
15
"PO-Revision-Date : 2021-06-28 01:03+0000\n "
16
16
"Last-Translator : Maciej Olko <maciej.olko@gmail.com>, 2021\n "
17
17
"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
Original file line number Diff line number Diff line change @@ -340,17 +340,27 @@ msgid ""
340
340
"When awaited, return the next item from the given :term:`asynchronous "
341
341
"iterator`, or *default* if given and the iterator is exhausted."
342
342
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."
343
346
344
347
msgid ""
345
348
"This is the async variant of the :func:`next` builtin, and behaves similarly."
346
349
msgstr ""
350
+ "Jest to asynchroniczny wariant wbudowanej funkcji :func:`next` i zachowuje "
351
+ "się podobnie."
347
352
348
353
msgid ""
349
354
"This calls the :meth:`~object.__anext__` method of *async_iterator*, "
350
355
"returning an :term:`awaitable`. Awaiting this returns the next value of the "
351
356
"iterator. If *default* is given, it is returned if the iterator is "
352
357
"exhausted, otherwise :exc:`StopAsyncIteration` is raised."
353
358
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`."
354
364
355
365
msgid ""
356
366
"Return ``True`` if any element of the *iterable* is true. If the iterable "
You can’t perform that action at this time.
0 commit comments