Skip to content

Commit bad1d85

Browse files
committed
Update translation from Transifex
1 parent 7b08e35 commit bad1d85

2 files changed

Lines changed: 21 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-
![33.95% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-33.95%25-0.svg)
4+
![34.87% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-34.87%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
![8 tłumaczy](https://img.shields.io/badge/tłumaczy-8-0.svg)
77

tutorial/datastructures.po

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,49 +241,66 @@ msgid ""
241241
"Note how the order of the :keyword:`for` and :keyword:`if` statements is the "
242242
"same in both these snippets."
243243
msgstr ""
244+
"Zwróć uwagę, że kolejność instrukcji :keyword:`for` i :keyword:`if` jest "
245+
"taka sama w obu fragmentach kodu."
244246

245247
msgid ""
246248
"If the expression is a tuple (e.g. the ``(x, y)`` in the previous example), "
247249
"it must be parenthesized. ::"
248250
msgstr ""
251+
"Jeśli wyrażenie jest krotką (tak jak ``(x, y)`` w poprzednim przykładzie), "
252+
"musi być wzięte w nawias. ::"
249253

250254
msgid ""
251255
"List comprehensions can contain complex expressions and nested functions::"
252256
msgstr ""
257+
"Wyrażenia listowe mogą zawierać złożone wyrażenia i zagnieżdżone funkcje::"
253258

254259
msgid "Nested List Comprehensions"
255-
msgstr ""
260+
msgstr "Zagnieżdżone wyrażenia listowe"
256261

257262
msgid ""
258263
"The initial expression in a list comprehension can be any arbitrary "
259264
"expression, including another list comprehension."
260265
msgstr ""
266+
"Wyrażeniem wyjściowym w wyrażeniu listowym może być każde arbitralne "
267+
"wyrażenie, włączając inne wyrażenie listowe."
261268

262269
msgid ""
263270
"Consider the following example of a 3x4 matrix implemented as a list of 3 "
264271
"lists of length 4::"
265272
msgstr ""
273+
"Rozważmy następujący przykład macierzy 3-na-4 zaimplementowanej jako lista "
274+
"trzech list o długości 4::"
266275

267276
msgid "The following list comprehension will transpose rows and columns::"
268-
msgstr ""
277+
msgstr "Następujące wyrażenie listowe przetransponuje wiersze i kolumny::"
269278

270279
msgid ""
271280
"As we saw in the previous section, the nested listcomp is evaluated in the "
272281
"context of the :keyword:`for` that follows it, so this example is equivalent "
273282
"to::"
274283
msgstr ""
284+
"Jak widzieliśmy w poprzedniej sekcji, zagnieżdżone wyrażenie listowe jest "
285+
"ewaluowane w kontekście :keyword:`for`, które po nim następuje, więc ten "
286+
"przykład jest równoważny temu::"
275287

276288
msgid "which, in turn, is the same as::"
277-
msgstr ""
289+
msgstr "który z kolei jest taki sam jak::"
278290

279291
msgid ""
280292
"In the real world, you should prefer built-in functions to complex flow "
281293
"statements. The :func:`zip` function would do a great job for this use case::"
282294
msgstr ""
295+
"W prawdziwym świecie powinieneś(-nnaś) preferować wbudowane funkcje w "
296+
"złożonych instrukcjach przepływu. Funkcja :func:`zip` bardzo się przyda w "
297+
"tym przypadku::"
283298

284299
msgid ""
285300
"See :ref:`tut-unpacking-arguments` for details on the asterisk in this line."
286301
msgstr ""
302+
"W :ref:`tut-unpacking-arguments` znajdziesz wyjaśnienie znaku gwiazdki w tej "
303+
"linii."
287304

288305
msgid "The :keyword:`!del` statement"
289306
msgstr ""

0 commit comments

Comments
 (0)