Skip to content

Commit fc63a7d

Browse files
committed
Update translation from Transifex
1 parent f58382d commit fc63a7d

2 files changed

Lines changed: 15 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Polskie tłumaczenie dokumentacji Pythona
22
========================================
33
![build](https://github.com/python/python-docs-pl/workflows/.github/workflows/update-and-build.yml/badge.svg)
4-
![24.55% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-24.55%25-0.svg)
4+
![25.07% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-25.07%25-0.svg)
55
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/dynamic/json.svg?label=całość&query=$.pl&url=http://gce.zhsj.me/python/newest)
66
![4 tłumaczy](https://img.shields.io/badge/tłumaczy-4-0.svg)
77

tutorial/controlflow.po

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -456,32 +456,43 @@ msgid ""
456456
"dictionary, or instances of most classes. For example, the following "
457457
"function accumulates the arguments passed to it on subsequent calls::"
458458
msgstr ""
459+
"**Ważna uwaga**: Wartość domyślna jest wyliczana tylko raz. Ma to znaczenie, "
460+
"gdy domyślna wartość jest obiektem mutowalnym takim jak lista, słownik lub "
461+
"instancje większości klas. Na przykład następująca funkcja akumuluje "
462+
"argumenty przekazane do niej w kolejnych wywołaniach::"
459463

460464
msgid "This will print ::"
461-
msgstr ""
465+
msgstr "To wyświetli ::"
462466

463467
msgid ""
464468
"If you don't want the default to be shared between subsequent calls, you can "
465469
"write the function like this instead::"
466470
msgstr ""
471+
"Jeśli nie chcesz, żeby domyślna wartość była współdzielona pomiędzy "
472+
"kolejnymi wywołaniami, możesz napisać funkcję w ten sposób::"
467473

468474
msgid "Keyword Arguments"
469-
msgstr ""
475+
msgstr "Argumenty nazwane"
470476

471477
msgid ""
472478
"Functions can also be called using :term:`keyword arguments <keyword "
473479
"argument>` of the form ``kwarg=value``. For instance, the following "
474480
"function::"
475481
msgstr ""
482+
"Funkcje mogą być również wywoływane przy użyciu :term:`argumentów nazwanych "
483+
"<keyword argument>` w formie ``kwarg=value``. Na przykład poniższa funkcja::"
476484

477485
msgid ""
478486
"accepts one required argument (``voltage``) and three optional arguments "
479487
"(``state``, ``action``, and ``type``). This function can be called in any "
480488
"of the following ways::"
481489
msgstr ""
490+
"akceptuje jeden wymagany argument (``voltage``) i trzy opcjonalne argumenty "
491+
"(``state``, ``action`` i ``type``). Funkcja może być wywołana w dowolny z "
492+
"poniższych sposobów::"
482493

483494
msgid "but all the following calls would be invalid::"
484-
msgstr ""
495+
msgstr "ale wszystkie poniższe wywołania byłyby niepoprawne::"
485496

486497
msgid ""
487498
"In a function call, keyword arguments must follow positional arguments. All "

0 commit comments

Comments
 (0)