@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
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'"
7979msgstr ""
80+ ">>> year = 2016\n"
81+ ">>> event = 'referendum'\n"
82+ ">>> f'Wyniki {event} {year}'\n"
83+ "'Wyniki referendum 2016'"
8084
8185msgid ""
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%'"
100104msgstr ""
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
102111msgid ""
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"
299308msgstr ""
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
301314msgid ""
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. ::"
304317msgstr ""
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
308321msgid ""
0 commit comments