Skip to content

Commit 5fae433

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 24956b5 commit 5fae433

File tree

2 files changed

+3
-29
lines changed

2 files changed

+3
-29
lines changed

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

tutorial/errors.po

Lines changed: 2 additions & 28 deletions
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-18 14:17+0000\n"
19+
"POT-Creation-Date: 2024-10-26 20:15+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"
@@ -939,39 +939,13 @@ msgid ""
939939
"executing finally clause\n"
940940
"Traceback (most recent call last):\n"
941941
" File \"<stdin>\", line 1, in <module>\n"
942-
" divide(\"2\", \"0\")\n"
942+
" divide(\"2\", \"1\")\n"
943943
" ~~~~~~^^^^^^^^^^\n"
944944
" File \"<stdin>\", line 3, in divide\n"
945945
" result = x / y\n"
946946
" ~~^~~\n"
947947
"TypeError: unsupported operand type(s) for /: 'str' and 'str'"
948948
msgstr ""
949-
">>> def divide(x, y):\n"
950-
"... try:\n"
951-
"... result = x / y\n"
952-
"... except ZeroDivisionError:\n"
953-
"... print(\"dzielenie przez zero!\")\n"
954-
"... else:\n"
955-
"... print(\"wynik to\", result)\n"
956-
"... finally:\n"
957-
"... print(\"wykonywanie klauzuli finally\")\n"
958-
"...\n"
959-
">>> divide(2, 1)\n"
960-
"wynik to 2.0\n"
961-
"wykonywanie klauzuli finally\n"
962-
">>> divide(2, 0)\n"
963-
"dzielenie przez zero!\n"
964-
"wykonywanie klauzuli finally\n"
965-
">>> divide(\"2\", \"1\")\n"
966-
"wykonywanie klauzuli finally\n"
967-
"Traceback (most recent call last):\n"
968-
" File \"<stdin>\", line 1, in <module>\n"
969-
" divide(\"2\", \"0\")\n"
970-
" ~~~~~~^^^^^^^^^^\n"
971-
" File \"<stdin>\", line 3, in divide\n"
972-
" result = x / y\n"
973-
" ~~^~~\n"
974-
"TypeError: unsupported operand type(s) for /: 'str' and 'str'"
975949

976950
msgid ""
977951
"As you can see, the :keyword:`finally` clause is executed in any event. "

0 commit comments

Comments
 (0)