Skip to content

Commit ed16efc

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 72cfac7 commit ed16efc

File tree

3 files changed

+17
-4
lines changed

3 files changed

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

tutorial/classes.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.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-08-31 11:30+0000\n"
14+
"POT-Creation-Date: 2024-09-20 14:57+0000\n"
1515
"PO-Revision-Date: 2024-05-11 00:34+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

tutorial/inputoutput.po

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-09-13 14:48+0000\n"
14+
"POT-Creation-Date: 2024-09-20 14:57+0000\n"
1515
"PO-Revision-Date: 2024-05-11 00:34+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -77,6 +77,10 @@ msgid ""
7777
">>> f'Results of the {year} {event}'\n"
7878
"'Results of the 2016 Referendum'"
7979
msgstr ""
80+
">>> year = 2016\n"
81+
">>> event = 'referendum'\n"
82+
">>> f'Wyniki {event} {year}'\n"
83+
"'Wyniki referendum 2016'"
8084

8185
msgid ""
8286
"The :meth:`str.format` method of strings requires more manual effort. "
@@ -98,6 +102,11 @@ msgid ""
98102
">>> '{:-9} YES votes {:2.2%}'.format(yes_votes, percentage)\n"
99103
"' 42572654 YES votes 49.67%'"
100104
msgstr ""
105+
">>> yes_votes = 42_572_654\n"
106+
">>> total_votes = 85_705_149\n"
107+
">>> percentage = yes_votes / total_votes\n"
108+
">>> '{:-9} głosów na TAK {:2.2%}'.format(yes_votes, percentage)\n"
109+
"' 42572654 głosów na TAK 49.67%'"
101110

102111
msgid ""
103112
"Notice how the ``yes_votes`` are padded with spaces and a negative sign only "
@@ -297,12 +306,16 @@ msgid ""
297306
">>> print('{1} and {0}'.format('spam', 'eggs'))\n"
298307
"eggs and spam"
299308
msgstr ""
309+
">>> print('{0} i {1}'.format('szynka', 'jajka'))\n"
310+
"szynka i jajka\n"
311+
">>> print('{1} i {0}'.format('szynka', 'jajka'))\n"
312+
"jajka i szynka"
300313

301314
msgid ""
302315
"If keyword arguments are used in the :meth:`str.format` method, their values "
303316
"are referred to by using the name of the argument. ::"
304317
msgstr ""
305-
"Jeśli argumenty nazwane są używane w metodzie :meth:`str.format()`, ich "
318+
"Jeśli argumenty nazwane są używane w metodzie :meth:`str.format`, ich "
306319
"wartości są przywoływane przy użyciu nazwy argumentu. ::"
307320

308321
msgid ""

0 commit comments

Comments
 (0)