Skip to content

Commit 60d791c

Browse files
committed
Update translation from Transifex
1 parent 796c4c4 commit 60d791c

File tree

3 files changed

+32
-6
lines changed

3 files changed

+32
-6
lines changed

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/m-aciek/python-docs-pl/workflows/.github/workflows/update-and-build.yml/badge.svg)
4-
![16.82% language switchera](https://img.shields.io/badge/language_switcher-16.82%25-0.svg)
4+
![17.57% language switchera](https://img.shields.io/badge/language_switcher-17.57%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
![3 tłumaczy](https://img.shields.io/badge/tłumaczy-3-0.svg)
77

sphinx.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ msgid "Library Reference"
6464
msgstr "Dokumentacja biblioteki"
6565

6666
msgid "keep this under your pillow"
67-
msgstr "trzymaj ją pod poduszką"
67+
msgstr "do trzymania pod poduszką"
6868

6969
msgid "Language Reference"
7070
msgstr "Dokumentacja języka"

tutorial/introduction.po

Lines changed: 30 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -424,43 +424,55 @@ msgstr ""
424424
"<shallow_vs_deep_copy>` listy::"
425425

426426
msgid "Lists also support operations like concatenation::"
427-
msgstr ""
427+
msgstr "Listy wspierają też operacje takie jak konkatenacja::"
428428

429429
msgid ""
430430
"Unlike strings, which are :term:`immutable`, lists are a :term:`mutable` "
431431
"type, i.e. it is possible to change their content::"
432432
msgstr ""
433+
"W przeciwieństwie do ciągów znaków, które są :term:`niemutowalne "
434+
"<immutable>`, listy są typem :term:`mutowalnym <mutable>`, w szczególności "
435+
"można zmieniać ich treść::"
433436

434437
msgid ""
435438
"You can also add new items at the end of the list, by using the :meth:`~list."
436439
"append` *method* (we will see more about methods later)::"
437440
msgstr ""
441+
"Można również dodawać nowe elementy na końcu listy, przez użycie *metody* "
442+
"(dowiemy się więcej o metodach później) :meth:`~list.append`::"
438443

439444
msgid ""
440445
"Assignment to slices is also possible, and this can even change the size of "
441446
"the list or clear it entirely::"
442447
msgstr ""
448+
"Możliwe jest również przypisywanie do slice'ów. Może to zmienić rozmiar "
449+
"listy lub zupełnie ją wyczyścić::"
443450

444451
msgid "The built-in function :func:`len` also applies to lists::"
445-
msgstr ""
452+
msgstr "Wbudowana funkcja :func:`len` ma również zastosowanie do list::"
446453

447454
msgid ""
448455
"It is possible to nest lists (create lists containing other lists), for "
449456
"example::"
450457
msgstr ""
458+
"Można zagnieżdżać listy (tworzyć listy zawierające inne listy), na przykład::"
451459

452460
msgid "First Steps Towards Programming"
453-
msgstr ""
461+
msgstr "Pierwsze kroki do programowania"
454462

455463
msgid ""
456464
"Of course, we can use Python for more complicated tasks than adding two and "
457465
"two together. For instance, we can write an initial sub-sequence of the "
458466
"`Fibonacci series <https://en.wikipedia.org/wiki/Fibonacci_number>`_ as "
459467
"follows::"
460468
msgstr ""
469+
"Oczywiście możemy używać Pythona do zadań bardziej skomplikowanych niż "
470+
"dodawanie dwóch do dwóch. Na przykład możemy napisać początkowy podciąg "
471+
"`ciągu Fibonacciego <https://pl.wikipedia.org/wiki/Ci%C4%85g_Fibonacciego>`_ "
472+
"następująco::"
461473

462474
msgid "This example introduces several new features."
463-
msgstr ""
475+
msgstr "Ten przykład wprowadza kilka nowych funkcji."
464476

465477
msgid ""
466478
"The first line contains a *multiple assignment*: the variables ``a`` and "
@@ -469,6 +481,11 @@ msgid ""
469481
"all evaluated first before any of the assignments take place. The right-"
470482
"hand side expressions are evaluated from the left to the right."
471483
msgstr ""
484+
"Pierwsza linia zawiera *wielokrotne przypisanie*: zmienne ``a`` i ``b`` "
485+
"jednocześnie dostają nowe wartości 0 i 1. W ostatniej linii jest ponownie "
486+
"wykorzystane, demonstrując, że wyrażenia po prawej stronie są ewaluowane "
487+
"wcześniej, zanim którekolwiek z przypisań ma miejsce. Wyrażenia po prawej "
488+
"stronie są ewaluowane od lewej do prawej."
472489

473490
msgid ""
474491
"The :keyword:`while` loop executes as long as the condition (here: ``a < "
@@ -480,6 +497,15 @@ msgid ""
480497
"than), ``>`` (greater than), ``==`` (equal to), ``<=`` (less than or equal "
481498
"to), ``>=`` (greater than or equal to) and ``!=`` (not equal to)."
482499
msgstr ""
500+
"Pętla :keyword:`while` wykonuje się dopóki warunek (tutaj: ``a < 10``) "
501+
"pozostaje prawdziwy. W Pythonie, tak jak w C, każda niezerowa liczba "
502+
"całkowita jest prawdziwa; zero jest fałszywe. Warunek może być również "
503+
"ciągiem znaków lub listą, tak naprawdę jakąkolwiek sekwencją; cokolwiek o "
504+
"niezerowej długości jest prawdziwe, puste sekwencje są fałszywe. Warunek "
505+
"użyty w przykładzie jest prostym porównaniem. Standardowe operatory porównań "
506+
"pisane są tak samo jak w C: ``<`` (mniejsze niż), ``>`` (większe niż), "
507+
"``==`` (równe), ``<=`` (mniejsze lub równe), ``>=`` (większe lub równe) i ``!"
508+
"=`` (różne)."
483509

484510
msgid ""
485511
"The *body* of the loop is *indented*: indentation is Python's way of "

0 commit comments

Comments
 (0)