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

Skip to content

Commit 5fc5ba7

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 9725d7c commit 5fc5ba7

6 files changed

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

c-api/float.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-09-13 14:16+0000\n"
14+
"POT-Creation-Date: 2024-10-04 14:17+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
1616
"Last-Translator: haaritsubaki, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/list.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-09-13 14:16+0000\n"
15+
"POT-Creation-Date: 2024-10-04 14:17+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
1717
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/number.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-09-13 14:16+0000\n"
15+
"POT-Creation-Date: 2024-10-04 14:17+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
1717
"Last-Translator: haaritsubaki, 2024\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

tutorial/datastructures.po

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-09-27 14:17+0000\n"
14+
"POT-Creation-Date: 2024-10-04 14:17+0000\n"
1515
"PO-Revision-Date: 2021-06-28 01:50+0000\n"
1616
"Last-Translator: Maciej Olko <[email protected]>, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -1294,6 +1294,10 @@ msgid ""
12941294
">>> non_null\n"
12951295
"'Trondheim'"
12961296
msgstr ""
1297+
">>> string1, string2, string3 = '', 'Trondheim', 'Hammer Dance'\n"
1298+
">>> non_null = string1 or string2 or string3\n"
1299+
">>> non_null\n"
1300+
"'Trondheim'"
12971301

12981302
msgid ""
12991303
"Note that in Python, unlike C, assignment inside expressions must be done "
@@ -1346,6 +1350,13 @@ msgid ""
13461350
"(1, 2, 3) == (1.0, 2.0, 3.0)\n"
13471351
"(1, 2, ('aa', 'ab')) < (1, 2, ('abc', 'a'), 4)"
13481352
msgstr ""
1353+
"(1, 2, 3) < (1, 2, 4)\n"
1354+
"[1, 2, 3] < [1, 2, 4]\n"
1355+
"'ABC' < 'C' < 'Pascal' < 'Python'\n"
1356+
"(1, 2, 3, 4) < (1, 2, 4)\n"
1357+
"(1, 2) < (1, 2, -1)\n"
1358+
"(1, 2, 3) == (1.0, 2.0, 3.0)\n"
1359+
"(1, 2, ('aa', 'ab')) < (1, 2, ('abc', 'a'), 4)"
13491360

13501361
msgid ""
13511362
"Note that comparing objects of different types with ``<`` or ``>`` is legal "

tutorial/errors.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -616,8 +616,8 @@ msgstr ""
616616
"...\n"
617617
"Traceback (most recent call last):\n"
618618
" File \"<stdin>\", line 2, in <module>\n"
619-
" open(\"database.sqlite\")\n"
620-
" ~~~~^^^^^^^^^^^^^^^^^^^\n"
619+
" open(\"bazadanych.sqlite\")\n"
620+
" ~~~~^^^^^^^^^^^^^^^^^^^^^\n"
621621
"FileNotFoundError: [Errno 2] No such file or directory: 'bazadanych.sqlite'\n"
622622
"\n"
623623
"During handling of the above exception, another exception occurred:\n"

0 commit comments

Comments
 (0)