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

Skip to content

Commit c164734

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 4ca4356 commit c164734

2 files changed

Lines changed: 25 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ 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-
![63.86% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-63.86%25-0.svg)
18+
![64.06% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-64.06%25-0.svg)
1919
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-3.51%25-0.svg)
2020
![23 tłumaczy](https://img.shields.io/badge/tłumaczy-23-0.svg)
2121
<!-- [[[end]]] -->

tutorial/errors.po

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.13\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2024-10-04 14:17+0000\n"
19+
"POT-Creation-Date: 2024-10-11 14:17+0000\n"
2020
"PO-Revision-Date: 2021-06-28 01:50+0000\n"
2121
"Last-Translator: Maciej Olko <[email protected]>, 2024\n"
2222
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -117,6 +117,24 @@ msgid ""
117117
" ~~~~^~~\n"
118118
"TypeError: can only concatenate str (not \"int\") to str"
119119
msgstr ""
120+
">>> 10 * (1/0)\n"
121+
"Traceback (most recent call last):\n"
122+
" File \"<stdin>\", line 1, in <module>\n"
123+
" 10 * (1/0)\n"
124+
" ~^~\n"
125+
"ZeroDivisionError: division by zero\n"
126+
">>> 4 + spam*3\n"
127+
"Traceback (most recent call last):\n"
128+
" File \"<stdin>\", line 1, in <module>\n"
129+
" 4 + spam*3\n"
130+
" ^^^^\n"
131+
"NameError: name 'spam' is not defined\n"
132+
">>> '2' + 2\n"
133+
"Traceback (most recent call last):\n"
134+
" File \"<stdin>\", line 1, in <module>\n"
135+
" '2' + 2\n"
136+
" ~~~~^~~\n"
137+
"TypeError: can only concatenate str (not \"int\") to str"
120138

121139
msgid ""
122140
"The last line of the error message indicates what happened. Exceptions come "
@@ -538,6 +556,11 @@ msgid ""
538556
" raise NameError('HiThere')\n"
539557
"NameError: HiThere"
540558
msgstr ""
559+
">>> raise NameError('CześćiCzołem')\n"
560+
"Traceback (most recent call last):\n"
561+
" File \"<stdin>\", line 1, in <module>\n"
562+
" raise NameError('CześćiCzołem')\n"
563+
"NameError: CześćiCzołem"
541564

542565
msgid ""
543566
"The sole argument to :keyword:`raise` indicates the exception to be raised. "

0 commit comments

Comments
 (0)