Skip to content

Commit 8c5463c

Browse files
committed
Update translation from Transifex
1 parent ddc855e commit 8c5463c

5 files changed

Lines changed: 20 additions & 9 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-
![37.09% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-37.09%25-0.svg)
4+
![37.57% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-37.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
![9 tłumaczy](https://img.shields.io/badge/tłumaczy-9-0.svg)
77

library/stdtypes.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# m_aciek <maciej.olko@gmail.com>, 2020
7+
# m_aciek <maciej.olko@gmail.com>, 2021
88
#
99
#, fuzzy
1010
msgid ""
@@ -13,7 +13,7 @@ msgstr ""
1313
"Report-Msgid-Bugs-To: \n"
1414
"POT-Creation-Date: 2021-05-04 06:48+0000\n"
1515
"PO-Revision-Date: 2017-02-16 23:27+0000\n"
16-
"Last-Translator: m_aciek <maciej.olko@gmail.com>, 2020\n"
16+
"Last-Translator: m_aciek <maciej.olko@gmail.com>, 2021\n"
1717
"Language-Team: Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n"
1818
"MIME-Version: 1.0\n"
1919
"Content-Type: text/plain; charset=UTF-8\n"
@@ -4337,7 +4337,7 @@ msgid ""
43374337
msgstr ""
43384338

43394339
msgid "Modules"
4340-
msgstr ""
4340+
msgstr "Moduły"
43414341

43424342
msgid ""
43434343
"The only special operation on a module is attribute access: ``m.name``, "

reference/datamodel.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ msgid ""
793793
msgstr ""
794794

795795
msgid "Modules"
796-
msgstr ""
796+
msgstr "Moduły"
797797

798798
msgid ""
799799
"Modules are a basic organizational unit of Python code, and are created by "

tutorial/datastructures.po

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,26 +577,37 @@ msgid ""
577577
"To loop over a sequence in sorted order, use the :func:`sorted` function "
578578
"which returns a new sorted list while leaving the source unaltered. ::"
579579
msgstr ""
580+
"Aby przeiterować po sekwencji w posortowanej kolejności, użyj funkcji :func:"
581+
"`sorted`, która zwraca nową posortowaną listę pozostawiając listę źródłową "
582+
"niezmienioną. ::"
580583

581584
msgid ""
582585
"Using :func:`set` on a sequence eliminates duplicate elements. The use of :"
583586
"func:`sorted` in combination with :func:`set` over a sequence is an "
584587
"idiomatic way to loop over unique elements of the sequence in sorted "
585588
"order. ::"
586589
msgstr ""
590+
"Użycie :func:`set` na sekwencji eliminuje zduplikowane elementy. Użycie :"
591+
"func:`sorted` w połączeniu z :func:`set` na sekwencji jest idiomatycznym "
592+
"sposobem na przeiterowanie po unikalnych elementach sekwencji w posortowanej "
593+
"kolejności. ::"
587594

588595
msgid ""
589596
"It is sometimes tempting to change a list while you are looping over it; "
590597
"however, it is often simpler and safer to create a new list instead. ::"
591598
msgstr ""
599+
"Czasem kusi, żeby zmienić listę podczas iterowania po niej; jednak często "
600+
"prościej i bezpieczniej jest stworzyć nową listę. ::"
592601

593602
msgid "More on Conditions"
594-
msgstr ""
603+
msgstr "Więcej na temat warunków"
595604

596605
msgid ""
597606
"The conditions used in ``while`` and ``if`` statements can contain any "
598607
"operators, not just comparisons."
599608
msgstr ""
609+
"Warunki użyte w instrukcjach ``while`` i ``if`` mogą zawierać dowolne "
610+
"operatory, nie tylko porównania."
600611

601612
msgid ""
602613
"The comparison operators ``in`` and ``not in`` check whether a value occurs "

tutorial/modules.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# m_aciek <maciej.olko@gmail.com>, 2019
7+
# m_aciek <maciej.olko@gmail.com>, 2021
88
#
99
#, fuzzy
1010
msgid ""
@@ -13,7 +13,7 @@ msgstr ""
1313
"Report-Msgid-Bugs-To: \n"
1414
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
1515
"PO-Revision-Date: 2017-02-16 23:41+0000\n"
16-
"Last-Translator: m_aciek <maciej.olko@gmail.com>, 2019\n"
16+
"Last-Translator: m_aciek <maciej.olko@gmail.com>, 2021\n"
1717
"Language-Team: Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n"
1818
"MIME-Version: 1.0\n"
1919
"Content-Type: text/plain; charset=UTF-8\n"
@@ -24,7 +24,7 @@ msgstr ""
2424
"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
2525

2626
msgid "Modules"
27-
msgstr ""
27+
msgstr "Moduły"
2828

2929
msgid ""
3030
"If you quit from the Python interpreter and enter it again, the definitions "

0 commit comments

Comments
 (0)