Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e88691b

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 7ff82d2 commit e88691b

3 files changed

Lines changed: 31 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ 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-
![51.43% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-51.43%25-0.svg)
19-
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-2.99%25-0.svg)
20-
![21 tłumaczy](https://img.shields.io/badge/tłumaczy-21-0.svg)
18+
![51.65% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-51.65%25-0.svg)
19+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-3.00%25-0.svg)
20+
![22 tłumaczy](https://img.shields.io/badge/tłumaczy-22-0.svg)
2121
<!-- [[[end]]] -->
2222

2323
Jeśli znalazłeś(-aś) błąd lub masz sugestię,

tutorial/controlflow.po

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# Lidia Lipinska-Zubrycka <[email protected]>, 2021
1010
# haaritsubaki, 2023
1111
# Maciej Olko <[email protected]>, 2023
12+
# Marysia Olko, 2024
1213
#
1314
#, fuzzy
1415
msgid ""
@@ -17,7 +18,7 @@ msgstr ""
1718
"Report-Msgid-Bugs-To: \n"
1819
"POT-Creation-Date: 2024-08-31 10:59+0000\n"
1920
"PO-Revision-Date: 2021-06-28 01:50+0000\n"
20-
"Last-Translator: Maciej Olko <[email protected]>, 2023\n"
21+
"Last-Translator: Marysia Olko, 2024\n"
2122
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
2223
"MIME-Version: 1.0\n"
2324
"Content-Type: text/plain; charset=UTF-8\n"
@@ -161,6 +162,14 @@ msgid ""
161162
"3\n"
162163
"4"
163164
msgstr ""
165+
">>> for i in range(5):\n"
166+
"... print(i)\n"
167+
"...\n"
168+
"0\n"
169+
"1\n"
170+
"2\n"
171+
"3\n"
172+
"4"
164173

165174
msgid ""
166175
"The given end point is never part of the generated sequence; ``range(10)`` "
@@ -183,6 +192,14 @@ msgid ""
183192
">>> list(range(-10, -100, -30))\n"
184193
"[-10, -40, -70]"
185194
msgstr ""
195+
">>> list(range(5, 10))\n"
196+
"[5, 6, 7, 8, 9]\n"
197+
"\n"
198+
">>> list(range(0, 10, 3))\n"
199+
"[0, 3, 6, 9]\n"
200+
"\n"
201+
">>> list(range(-10, -100, -30))\n"
202+
"[-10, -40, -70]"
186203

187204
msgid ""
188205
"To iterate over the indices of a sequence, you can combine :func:`range` "
@@ -217,6 +234,8 @@ msgid ""
217234
">>> range(10)\n"
218235
"range(0, 10)"
219236
msgstr ""
237+
">>> range(10)\n"
238+
"range(0, 10)"
220239

221240
msgid ""
222241
"In many ways the object returned by :func:`range` behaves as if it is a "
@@ -247,6 +266,8 @@ msgid ""
247266
">>> sum(range(4)) # 0 + 1 + 2 + 3\n"
248267
"6"
249268
msgstr ""
269+
">>> sum(range(4)) # 0 + 1 + 2 + 3\n"
270+
"6"
250271

251272
msgid ""
252273
"Later we will see more functions that return iterables and take iterables as "

tutorial/stdlib.po

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ msgid ""
4747
">>> os.system('mkdir today') # Run the command mkdir in the system shell\n"
4848
"0"
4949
msgstr ""
50+
">>> import os\n"
51+
">>> os.getcwd() # Zwróć aktualny folder roboczy\n"
52+
"'C:\\\\Python313'\n"
53+
">>> os.chdir('/server/accesslogs') # Zmień aktualny folder roboczy\n"
54+
">>> os.system('mkdir today') # Uruchom komendę mkdir w powłoce\n"
55+
"0"
5056

5157
msgid ""
5258
"Be sure to use the ``import os`` style instead of ``from os import *``. "

0 commit comments

Comments
 (0)