Skip to content

Commit c84844f

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 192b3c4 commit c84844f

File tree

4 files changed

+60
-9
lines changed

4 files changed

+60
-9
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-
![85.87% Language Switcher](https://img.shields.io/badge/language_switcher-85.87%25-0.svg)
19-
![Total Translation of Documentation](https://img.shields.io/badge/Total-4.53%25-0.svg)
18+
![86.83% Language Switcher](https://img.shields.io/badge/language_switcher-86.83%25-0.svg)
19+
![Total Translation of Documentation](https://img.shields.io/badge/Total-4.57%25-0.svg)
2020
![25 Translators](https://img.shields.io/badge/Translators-25-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-
![85.87% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-85.87%25-0.svg)
19-
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-4.53%25-0.svg)
18+
![86.83% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-86.83%25-0.svg)
19+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-4.57%25-0.svg)
2020
![25 tłumaczy](https://img.shields.io/badge/tłumaczy-25-0.svg)
2121
<!-- [[[end]]] -->
2222

distributing/index.po

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@
55
#
66
# Translators:
77
# Maciej Olko <[email protected]>, 2021
8+
# Stanislaw Ulbrych, 2024
89
#
910
#, fuzzy
1011
msgid ""
1112
msgstr ""
1213
"Project-Id-Version: Python 3.13\n"
1314
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-12-06 14:18+0000\n"
15+
"POT-Creation-Date: 2024-12-13 14:18+0000\n"
1516
"PO-Revision-Date: 2021-06-28 00:50+0000\n"
16-
"Last-Translator: Maciej Olko <[email protected]>, 2021\n"
17+
"Last-Translator: Stanislaw Ulbrych, 2024\n"
1718
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
1819
"MIME-Version: 1.0\n"
1920
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,3 +32,6 @@ msgid ""
3132
"been moved to the `Python Packaging User Guide`_, and the tutorial on "
3233
"`packaging Python projects`_."
3334
msgstr ""
35+
"Informacje i wskazówki dotyczące dystrybucji moduł Pythona i pakietów "
36+
"zostały przeniesione do `Python Packaging User Guide`_, oraz samouczka "
37+
"`packaging Python projects`_."

library/functions.po

Lines changed: 50 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@
88
# haaritsubaki, 2023
99
# Ciarbin <[email protected]>, 2024
1010
# Wiktor Matuszewski <[email protected]>, 2024
11-
# Stanislaw Ulbrych, 2024
1211
# Maciej Olko <[email protected]>, 2024
12+
# Stanislaw Ulbrych, 2024
1313
#
1414
#, fuzzy
1515
msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.13\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2024-12-06 14:18+0000\n"
19+
"POT-Creation-Date: 2024-12-13 14:18+0000\n"
2020
"PO-Revision-Date: 2021-06-28 01:06+0000\n"
21-
"Last-Translator: Maciej Olko <[email protected]>, 2024\n"
21+
"Last-Translator: Stanislaw Ulbrych, 2024\n"
2222
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
2323
"MIME-Version: 1.0\n"
2424
"Content-Type: text/plain; charset=UTF-8\n"
@@ -965,6 +965,11 @@ msgid ""
965965
"example, ``delattr(x, 'foobar')`` is equivalent to ``del x.foobar``. *name* "
966966
"need not be a Python identifier (see :func:`setattr`)."
967967
msgstr ""
968+
"Jest to krewny :func:`setattr`. Argumenty są obiektem i napisem. Napis musi "
969+
"być nazwą jednego z atrybut obiektu. Funkcja usuwa nazwany atrybut, pod "
970+
"warunkiem, że obiekt na to pozwala. Na przykład, ``delattr(x, 'foobar')`` "
971+
"jest równoważne ``del x.foobar``. *name* nie musi być identyfikatorem Python "
972+
"(zobacz :func:`setattr`)."
968973

969974
msgid ""
970975
"Create a new dictionary. The :class:`dict` object is the dictionary class. "
@@ -996,6 +1001,11 @@ msgid ""
9961001
"__getattribute__` function to customize the way :func:`dir` reports their "
9971002
"attributes."
9981003
msgstr ""
1004+
"Jeśli obiekt posiada metodę o nazwie :meth:`~object.__dir__`, metoda ta "
1005+
"zostanie wywołana i musi zwracać listę atrybut. Pozwala to obiektom, które "
1006+
"implementują niestandardowe :func:`~object.__getattr__` lub :func:`~object."
1007+
"__getattribute__` funkcje na dostosowanie sposobu, w jaki :func:`dir` "
1008+
"zgłasza ich atrybuty."
9991009

10001010
msgid ""
10011011
"If the object does not provide :meth:`~object.__dir__`, the function tries "
@@ -1004,12 +1014,20 @@ msgid ""
10041014
"necessarily complete and may be inaccurate when the object has a custom :"
10051015
"func:`~object.__getattr__`."
10061016
msgstr ""
1017+
"Jeśli obiekt nie udostępnia :meth:`~object.__dir__`, funkcja stara się "
1018+
"zebrać informacje z :attr:`~object.__dict__` atrybut obiektu, jeśli jest "
1019+
"zdefiniowany, oraz z jego obiektu typu. Wynikowa lista niekoniecznie jest "
1020+
"kompletna i może być niedokładna, jeśli obiekt ma niestandardowy :func:"
1021+
"`~object.__getattr__`."
10071022

10081023
msgid ""
10091024
"The default :func:`dir` mechanism behaves differently with different types "
10101025
"of objects, as it attempts to produce the most relevant, rather than "
10111026
"complete, information:"
10121027
msgstr ""
1028+
"Mechanizm domyślny :func:`dir` zachowuje się inaczej w przypadku różnych "
1029+
"typów obiektów, ponieważ stara się uzyskać najbardziej istotne, a nie "
1030+
"kompletne informacje:"
10131031

10141032
msgid ""
10151033
"If the object is a module object, the list contains the names of the "
@@ -1022,12 +1040,16 @@ msgid ""
10221040
"If the object is a type or class object, the list contains the names of its "
10231041
"attributes, and recursively of the attributes of its bases."
10241042
msgstr ""
1043+
"Jeśli obiekt jest obiektem typu lub klasy, lista zawiera nazwy jego atrybut "
1044+
"i rekurencyjnie atrybut jego baz."
10251045

10261046
msgid ""
10271047
"Otherwise, the list contains the object's attributes' names, the names of "
10281048
"its class's attributes, and recursively of the attributes of its class's "
10291049
"base classes."
10301050
msgstr ""
1051+
"W przeciwnym razie lista zawiera nazwy atrybut' obiektow, nazwy atrybut jego "
1052+
"klasy i rekurencyjnie atrybut klas bazowych jego klasy."
10311053

10321054
msgid "The resulting list is sorted alphabetically. For example:"
10331055
msgstr "Wynikowa lista jest posortowana alfabetycznie. Na przykład:"
@@ -1039,6 +1061,12 @@ msgid ""
10391061
"its detailed behavior may change across releases. For example, metaclass "
10401062
"attributes are not in the result list when the argument is a class."
10411063
msgstr ""
1064+
"Ponieważ :func:`dir` jest dostarczany głównie jako udogodnienie do użycia w "
1065+
"interaktywnym wierszu polecenia, stara się dostarczyć interesujący zestaw "
1066+
"nazw bardziej niż rygorystycznie lub konsekwentnie zdefiniowany zestaw nazw, "
1067+
"a jego szczegółowy zachowanie może się zmieniać w różnych wydaniach. Na "
1068+
"przykład, atrybut metaklasy nie znajduje się na liście wyników, gdy argument "
1069+
"jest klasą."
10421070

10431071
msgid ""
10441072
"Take two (non-complex) numbers as arguments and return a pair of numbers "
@@ -1050,6 +1078,15 @@ msgid ""
10501078
"is very close to *a*, if ``a % b`` is non-zero it has the same sign as *b*, "
10511079
"and ``0 <= abs(a % b) < abs(b)``."
10521080
msgstr ""
1081+
"Weź dwie (niezłożone) liczby jako argumenty i zwraca parę liczb składającą "
1082+
"się z ich ilorazu i reszty, gdy używasz liczba całkowita dzielenia. W "
1083+
"przypadku mieszanych typów operandów obowiązują reguły dla binarnych "
1084+
"operatorów arytmetycznych. Dla liczb całkowitych wynik jest taki sam jak "
1085+
"``(a // b, a % b)``. Dla liczb zmiennoprzecinkowych wynikiem jest ``(q, a % "
1086+
"b)``, gdzie *q* jest zwykle ``math.floor(a / b)``, ale może być o 1 "
1087+
"mniejsze. W każdym przypadku ``q * b + a % b`` jest bardzo zbliżone do *a*, "
1088+
"jeśli ``a % b`` jest niezerowe, to ma taki sam znak jak *b* i ``0 <= abs(a % "
1089+
"b) < abs(b)``."
10531090

10541091
msgid ""
10551092
"Return an enumerate object. *iterable* must be a sequence, an :term:"
@@ -1153,13 +1190,23 @@ msgid ""
11531190
"of a string. If the code object has been compiled with ``'exec'`` as the "
11541191
"*mode* argument, :func:`eval`\\'s return value will be ``None``."
11551192
msgstr ""
1193+
"Ta funkcja może być również używana do wykonywania dowolnych obiektów kodu "
1194+
"(takich jak te utworzone przez :func:`compile`). W tym przypadku należy "
1195+
"przekazać obiekt kodu zamiast napisu. Jeśli obiekt kodu został skompilowany "
1196+
"z ``'exec'`` jako *mode* argument, :func:`eval` wartością zwracana będzie "
1197+
"``None``."
11561198

11571199
msgid ""
11581200
"Hints: dynamic execution of statements is supported by the :func:`exec` "
11591201
"function. The :func:`globals` and :func:`locals` functions return the "
11601202
"current global and local dictionary, respectively, which may be useful to "
11611203
"pass around for use by :func:`eval` or :func:`exec`."
11621204
msgstr ""
1205+
"Wskazówki: dynamiczne wykonywanie instrukcji jest obsługiwane przez :func:"
1206+
"`exec` funkcja . Adresy :func:`globals` i :func:`locals` funkcje zwracaja "
1207+
"określaaą odpowiednio bieżący globalny i lokalny adres słownika, który może "
1208+
"być przydatny do przekazania do użycia przez adresy :func:`eval` lub :func:"
1209+
"`exec`."
11631210

11641211
msgid ""
11651212
"If the given source is a string, then leading and trailing spaces and tabs "

0 commit comments

Comments
 (0)