@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version : Python 3.12\n "
13
13
"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 "
15
15
"PO-Revision-Date : 2024-05-11 00:34+0000\n "
16
16
"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n "
17
17
"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -77,6 +77,10 @@ msgid ""
77
77
">>> f'Results of the {year} {event}'\n"
78
78
"'Results of the 2016 Referendum'"
79
79
msgstr ""
80
+ ">>> year = 2016\n"
81
+ ">>> event = 'referendum'\n"
82
+ ">>> f'Wyniki {event} {year}'\n"
83
+ "'Wyniki referendum 2016'"
80
84
81
85
msgid ""
82
86
"The :meth:`str.format` method of strings requires more manual effort. "
@@ -98,6 +102,11 @@ msgid ""
98
102
">>> '{:-9} YES votes {:2.2%}'.format(yes_votes, percentage)\n"
99
103
"' 42572654 YES votes 49.67%'"
100
104
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%'"
101
110
102
111
msgid ""
103
112
"Notice how the ``yes_votes`` are padded with spaces and a negative sign only "
@@ -297,12 +306,16 @@ msgid ""
297
306
">>> print('{1} and {0}'.format('spam', 'eggs'))\n"
298
307
"eggs and spam"
299
308
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"
300
313
301
314
msgid ""
302
315
"If keyword arguments are used in the :meth:`str.format` method, their values "
303
316
"are referred to by using the name of the argument. ::"
304
317
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 "
306
319
"wartości są przywoływane przy użyciu nazwy argumentu. ::"
307
320
308
321
msgid ""
0 commit comments