Skip to content

Commit 74bd9bc

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent fce51c4 commit 74bd9bc

File tree

3 files changed

+72
-12
lines changed

3 files changed

+72
-12
lines changed

README.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ f'''![build](https://github.com/python/python-docs-pl/workflows/.github/workflow
1515
![{translators} Translators](https://img.shields.io/badge/Translators-{translators}-0.svg)''')
1616
]]] -->
1717
![build](https://github.com/python/python-docs-pl/workflows/.github/workflows/update-lint-and-build.yml/badge.svg)
18-
![79.75% Language Switcher](https://img.shields.io/badge/language_switcher-79.75%25-0.svg)
19-
![Total Translation of Documentation](https://img.shields.io/badge/Total-4.11%25-0.svg)
18+
![80.54% Language Switcher](https://img.shields.io/badge/language_switcher-80.54%25-0.svg)
19+
![Total Translation of Documentation](https://img.shields.io/badge/Total-4.14%25-0.svg)
2020
![24 Translators](https://img.shields.io/badge/Translators-24-0.svg)
2121
<!-- [[[end]]] -->
2222

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ 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-lint-and-build.yml/badge.svg)
18-
![79.75% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-79.75%25-0.svg)
19-
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-4.11%25-0.svg)
18+
![80.54% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-80.54%25-0.svg)
19+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-4.14%25-0.svg)
2020
![24 tłumaczy](https://img.shields.io/badge/tłumaczy-24-0.svg)
2121
<!-- [[[end]]] -->
2222

library/functions.po

Lines changed: 68 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -592,6 +592,9 @@ msgid ""
592592
" @classmethod\n"
593593
" def f(cls, arg1, arg2): ..."
594594
msgstr ""
595+
"class C:\n"
596+
" @classmethod\n"
597+
" def f(cls, arg1, arg2): ..."
595598

596599
msgid ""
597600
"The ``@classmethod`` form is a function :term:`decorator` -- see :ref:"
@@ -712,6 +715,8 @@ msgid ""
712715
"If you want to parse Python code into its AST representation, see :func:`ast."
713716
"parse`."
714717
msgstr ""
718+
"Jeśli chcesz przeanalizować kod Python do jego reprezentacji AST, zobacz :"
719+
"func:`ast.parse`."
715720

716721
msgid ""
717722
"Raises an :ref:`auditing event <auditing>` ``compile`` with arguments "
@@ -815,6 +820,8 @@ msgstr "Typ Complex został opisany na stronie :ref:`typesnumeric`."
815820

816821
msgid "Grouping digits with underscores as in code literals is allowed."
817822
msgstr ""
823+
"Dozwolone jest grupowanie cyfr za pomocą podkreślników, tak jak w literałach "
824+
"kodu."
818825

819826
msgid ""
820827
"Falls back to :meth:`~object.__index__` if :meth:`~object.__complex__` and :"
@@ -884,7 +891,7 @@ msgid ""
884891
msgstr ""
885892

886893
msgid "The resulting list is sorted alphabetically. For example:"
887-
msgstr ""
894+
msgstr "Wynikowa lista jest posortowana alfabetycznie. Na przykład:"
888895

889896
msgid ""
890897
"Because :func:`dir` is supplied primarily as a convenience for use at an "
@@ -1002,6 +1009,8 @@ msgid ""
10021009
"If the given source is a string, then leading and trailing spaces and tabs "
10031010
"are stripped."
10041011
msgstr ""
1012+
"Jeśli podane źródło to napis, początkowe i końcowe spacje i tabulatory są "
1013+
"usuwane."
10051014

10061015
msgid ""
10071016
"See :func:`ast.literal_eval` for a function that can safely evaluate strings "
@@ -1015,6 +1024,8 @@ msgstr ""
10151024

10161025
msgid "The *globals* and *locals* arguments can now be passed as keywords."
10171026
msgstr ""
1027+
"Funkcje *globals* i *locals* argumenty mogą być teraz przekazywane jako "
1028+
"słowa kluczowe."
10181029

10191030
msgid ""
10201031
"The semantics of the default *locals* namespace have been adjusted as "
@@ -1101,7 +1112,7 @@ msgid ""
11011112
msgstr ""
11021113

11031114
msgid "Return a floating-point number constructed from a number or a string."
1104-
msgstr ""
1115+
msgstr "Zwraca liczba zmiennoprzecinkowa zbudowana z liczby lub napisu."
11051116

11061117
msgid ""
11071118
">>> float('+1.23')\n"
@@ -1115,6 +1126,16 @@ msgid ""
11151126
">>> float('-Infinity')\n"
11161127
"-inf"
11171128
msgstr ""
1129+
">>> float('+1.23')\n"
1130+
"1.23\n"
1131+
">>> float(' -12345\\n')\n"
1132+
"-12345.0\n"
1133+
">>> float('1e-003')\n"
1134+
"0.001\n"
1135+
">>> float('+1E6')\n"
1136+
"1000000.0\n"
1137+
">>> float('-Infinity')\n"
1138+
"-inf"
11181139

11191140
msgid ""
11201141
"If the argument is a string, it should contain a decimal number, optionally "
@@ -1145,7 +1166,7 @@ msgid ""
11451166
msgstr ""
11461167

11471168
msgid "If no argument is given, ``0.0`` is returned."
1148-
msgstr ""
1169+
msgstr "Jeśli nie podano argumentu, zwracane jest ``0.0``."
11491170

11501171
msgid "The float type is described in :ref:`typesnumeric`."
11511172
msgstr "Typ float został opisany na stronie :ref:`typesnumeric`."
@@ -1288,7 +1309,7 @@ msgid ""
12881309
msgstr ""
12891310

12901311
msgid "This is the address of the object in memory."
1291-
msgstr ""
1312+
msgstr "Jest to adres obiektu w pamięci."
12921313

12931314
msgid ""
12941315
"Raises an :ref:`auditing event <auditing>` ``builtins.id`` with argument "
@@ -1308,6 +1329,10 @@ msgid ""
13081329
">>> s \n"
13091330
"\"Monty Python's Flying Circus\""
13101331
msgstr ""
1332+
">>> s = input('--> ') \n"
1333+
"--> Monty Python's Flying Circus\n"
1334+
">>> s \n"
1335+
"\"Monty Python's Flying Circus\""
13111336

13121337
msgid ""
13131338
"If the :mod:`readline` module was loaded, then :func:`input` will use it to "
@@ -1457,6 +1482,10 @@ msgid ""
14571482
" for block in iter(partial(f.read, 64), b''):\n"
14581483
" process_block(block)"
14591484
msgstr ""
1485+
"from functools import partial\n"
1486+
"with open('mojedane.db', 'rb') as f:\n"
1487+
" for block in iter(partial(f.read, 64), b''):\n"
1488+
" process_block(block)"
14601489

14611490
msgid ""
14621491
"Return the length (the number of items) of an object. The argument may be a "
@@ -1592,6 +1621,8 @@ msgid ""
15921621
"Return the smallest item in an iterable or the smallest of two or more "
15931622
"arguments."
15941623
msgstr ""
1624+
"Zwraca najmniejszy element w iterable lub najmniejszy z dwóch lub więcej "
1625+
"argumentow."
15951626

15961627
msgid ""
15971628
"If one positional argument is provided, it should be an :term:`iterable`. "
@@ -1910,6 +1941,8 @@ msgid ""
19101941
"The ``mode`` and ``flags`` arguments may have been modified or inferred from "
19111942
"the original call."
19121943
msgstr ""
1944+
"Adresy ``mode`` i ``flags`` argumenty mogły zostać zmodyfikowane lub "
1945+
"wywnioskowane z oryginalnego połączenia."
19131946

19141947
msgid "The *opener* parameter was added."
19151948
msgstr ""
@@ -1993,6 +2026,10 @@ msgid ""
19932026
">>> 23 * 38 % 97 == 1\n"
19942027
"True"
19952028
msgstr ""
2029+
">>> pow(38, -1, mod=97)\n"
2030+
"23\n"
2031+
">>> 23 * 38 % 97 == 1\n"
2032+
"True"
19962033

19972034
msgid ""
19982035
"For :class:`int` operands, the three-argument form of ``pow`` now allows the "
@@ -2002,6 +2039,8 @@ msgstr ""
20022039
msgid ""
20032040
"Allow keyword arguments. Formerly, only positional arguments were supported."
20042041
msgstr ""
2042+
"Zezwalaj na argument nazwany. Wcześniej obsługiwane były tylko pozycyjne "
2043+
"argument."
20052044

20062045
msgid ""
20072046
"Print *objects* to the text stream *file*, separated by *sep* and followed "
@@ -2128,7 +2167,7 @@ msgid ""
21282167
msgstr ""
21292168

21302169
msgid "The docstrings of property objects are now writeable."
2131-
msgstr ""
2170+
msgstr "Dokumentacja obiektów właściwości sa teraz zapisywalne."
21322171

21332172
msgid ""
21342173
"Attribute holding the name of the property. The name of the property can be "
@@ -2153,7 +2192,7 @@ msgid ""
21532192
msgstr ""
21542193

21552194
msgid "This class has a custom representation that can be evaluated::"
2156-
msgstr ""
2195+
msgstr "Ta klasa ma niestandardową reprezentację, którą można ocenić::"
21572196

21582197
msgid ""
21592198
"class Person:\n"
@@ -2164,6 +2203,13 @@ msgid ""
21642203
" def __repr__(self):\n"
21652204
" return f\"Person('{self.name}', {self.age})\""
21662205
msgstr ""
2206+
"class Osoba:\n"
2207+
" def __init__(self, imie, wiek):\n"
2208+
" self.imie = imie\n"
2209+
" self.wiek = wiek\n"
2210+
"\n"
2211+
" def __repr__(self):\n"
2212+
" zwracać f \"Person('{self.imie}', {self.wiek})\"."
21672213

21682214
msgid ""
21692215
"Return a reverse :term:`iterator`. *seq* must be an object which has a :"
@@ -2317,6 +2363,9 @@ msgid ""
23172363
" @staticmethod\n"
23182364
" def f(arg1, arg2, argN): ..."
23192365
msgstr ""
2366+
"class C:\n"
2367+
" @staticmethod\n"
2368+
" def f(arg1, arg2, argN): ..."
23202369

23212370
msgid ""
23222371
"The ``@staticmethod`` form is a function :term:`decorator` -- see :ref:"
@@ -2453,14 +2502,18 @@ msgid ""
24532502
msgstr ""
24542503

24552504
msgid "For both use cases, a typical superclass call looks like this::"
2456-
msgstr ""
2505+
msgstr "W obu przypadkach typowe wywołanie superklasy wygląda następująco::"
24572506

24582507
msgid ""
24592508
"class C(B):\n"
24602509
" def method(self, arg):\n"
24612510
" super().method(arg) # This does the same thing as:\n"
24622511
" # super(C, self).method(arg)"
24632512
msgstr ""
2513+
"class C(B):\n"
2514+
" def methoda(self, arg):\n"
2515+
" super().methoda(arg) # To robi to samo co:\n"
2516+
" # super(C, self).methoda(arg)"
24642517

24652518
msgid ""
24662519
"In addition to method lookups, :func:`super` also works for attribute "
@@ -2491,6 +2544,9 @@ msgid ""
24912544
"`super`, see `guide to using super() <https://rhettinger.wordpress."
24922545
"com/2011/05/26/super-considered-super/>`_."
24932546
msgstr ""
2547+
"Praktyczne sugestie dotyczące projektowania klas współpracujących przy "
2548+
"użyciu :func:`super` można znaleźć w `poradniku korzystania z super() "
2549+
"<https://rhettinger.wordpress.com/2011/05/26/super-considered-super/>`_."
24942550

24952551
msgid ""
24962552
"Rather than being a function, :class:`tuple` is actually an immutable "
@@ -2623,6 +2679,8 @@ msgid ""
26232679
">>> list(zip(range(3), ['fee', 'fi', 'fo', 'fum']))\n"
26242680
"[(0, 'fee'), (1, 'fi'), (2, 'fo')]"
26252681
msgstr ""
2682+
">>> list(zip(range(3), ['fee', 'fi', 'fo', 'fum']))\n"
2683+
"[(0, 'fee'), (1, 'fi'), (2, 'fo')]"
26262684

26272685
msgid ""
26282686
":func:`zip` is often used in cases where the iterables are assumed to be of "
@@ -2634,6 +2692,8 @@ msgid ""
26342692
">>> list(zip(('a', 'b', 'c'), (1, 2, 3), strict=True))\n"
26352693
"[('a', 1), ('b', 2), ('c', 3)]"
26362694
msgstr ""
2695+
">>> list(zip(('a', 'b', 'c'), (1, 2, 3), strict=True))\n"
2696+
"[('a', 1), ('b', 2), ('c', 3)]"
26372697

26382698
msgid ""
26392699
"Unlike the default behavior, it raises a :exc:`ValueError` if one iterable "
@@ -2738,7 +2798,7 @@ msgid "The statement ``import spam.ham`` results in this call::"
27382798
msgstr ""
27392799

27402800
msgid "spam = __import__('spam.ham', globals(), locals(), [], 0)"
2741-
msgstr ""
2801+
msgstr "spam = __import__('spam.ham', globals(), locals(), [], 0)"
27422802

27432803
msgid ""
27442804
"Note how :func:`__import__` returns the toplevel module here because this is "

0 commit comments

Comments
 (0)