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

Skip to content

Commit 171d848

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent fdc3f66 commit 171d848

3 files changed

Lines changed: 22 additions & 3 deletions

File tree

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-
![56.00% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-56.00%25-0.svg)
19-
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-3.17%25-0.svg)
18+
![56.27% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-56.27%25-0.svg)
19+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-3.18%25-0.svg)
2020
![23 tłumaczy](https://img.shields.io/badge/tłumaczy-23-0.svg)
2121
<!-- [[[end]]] -->
2222

reference/toplevel_components.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-08-09 16:36+0000\n"
15+
"POT-Creation-Date: 2024-08-31 10:59+0000\n"
1616
"PO-Revision-Date: 2021-06-28 01:49+0000\n"
1717
"Last-Translator: haaritsubaki, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

tutorial/controlflow.po

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1296,6 +1296,12 @@ msgid ""
12961296
" print(\"-- Lovely plumage, the\", type)\n"
12971297
" print(\"-- It's\", state, \"!\")"
12981298
msgstr ""
1299+
"def parrot(voltage, state='jest sztywna', action='fru', type='norweska "
1300+
"błękitna'):\n"
1301+
" print(\"-- Ta papuga nie zrobi\", action, end=' ')\n"
1302+
" print(\"nawet jeśli podłączę ją do\", voltage, \"woltów.\")\n"
1303+
" print(\"-- Śliczne upierzenie,\", type)\n"
1304+
" print(\"-- Ona\", state, \"!\")"
12991305

13001306
msgid ""
13011307
"accepts one required argument (``voltage``) and three optional arguments "
@@ -1317,6 +1323,13 @@ msgid ""
13171323
"parrot('a thousand', state='pushing up the daisies') # 1 positional, 1 "
13181324
"keyword"
13191325
msgstr ""
1326+
"parrot(1000) # 1 argument "
1327+
"pozycyjny\n"
1328+
"parrot(voltage=1000) # 1 argument nazwany\n"
1329+
"parrot(voltage=1000000, action='FRUUUUU') # 2 argumenty nazwane\n"
1330+
"parrot(action='FRUUUUU', voltage=1000000) # 2 argumenty nazwane\n"
1331+
"parrot('miliona', 'wyzionęła ducha', 'hop') # 3 argumenty pozycyjne\n"
1332+
"parrot('tysiąca', state='wącha kwiatki') # 1 pozycyjny, 1 nazwany"
13201333

13211334
msgid "but all the following calls would be invalid::"
13221335
msgstr "ale wszystkie poniższe wywołania byłyby niepoprawne::"
@@ -1328,6 +1341,12 @@ msgid ""
13281341
"parrot(110, voltage=220) # duplicate value for the same argument\n"
13291342
"parrot(actor='John Cleese') # unknown keyword argument"
13301343
msgstr ""
1344+
"parrot() # brakuje wymaganego argumentu\n"
1345+
"parrot(voltage=5.0, 'zdechła') # argument nie-nazwany za argumentem "
1346+
"nazwanym\n"
1347+
"parrot(110, voltage=220) # zduplikowana wartość dla tego samego "
1348+
"argumentu\n"
1349+
"parrot(actor='John Cleese') # nieznany argument nazwany"
13311350

13321351
msgid ""
13331352
"In a function call, keyword arguments must follow positional arguments. All "

0 commit comments

Comments
 (0)