5
5
#
6
6
# Translators:
7
7
# Seweryn Piórkowski <seweryn.piorkowski@gmail.com>, 2021
8
- # Stan Ulbrych, 2024
8
+ # Stan Ulbrych, 2025
9
9
#
10
10
#, fuzzy
11
11
msgid ""
12
12
msgstr ""
13
13
"Project-Id-Version : Python 3.13\n "
14
14
"Report-Msgid-Bugs-To : \n "
15
- "POT-Creation-Date : 2025-02-03 17:40 +0000\n "
15
+ "POT-Creation-Date : 2025-02-21 14:16 +0000\n "
16
16
"PO-Revision-Date : 2021-06-28 00:52+0000\n "
17
- "Last-Translator : Stan Ulbrych, 2024 \n "
17
+ "Last-Translator : Stan Ulbrych, 2025 \n "
18
18
"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
19
19
"MIME-Version : 1.0\n "
20
20
"Content-Type : text/plain; charset=UTF-8\n "
@@ -77,6 +77,22 @@ msgid ""
77
77
"Sort entries alphabetically if none of -cftuvSUX nor --sort is specified.\n"
78
78
"..."
79
79
msgstr ""
80
+ "$ ls\n"
81
+ "cpython devguide prog.py pypy rm-unused-function.patch\n"
82
+ "$ ls pypy\n"
83
+ "ctypes_configure demo dotviewer include lib_pypy lib-python ...\n"
84
+ "$ ls -l\n"
85
+ "total 20\n"
86
+ "drwxr-xr-x 19 wena wena 4096 Feb 18 18:51 cpython\n"
87
+ "drwxr-xr-x 4 wena wena 4096 Feb 8 12:04 devguide\n"
88
+ "-rwxr-xr-x 1 wena wena 535 Feb 19 00:05 prog.py\n"
89
+ "drwxr-xr-x 14 wena wena 4096 Feb 7 00:59 pypy\n"
90
+ "-rw-r--r-- 1 wena wena 741 Feb 18 01:01 rm-unused-function.patch\n"
91
+ "$ ls --help\n"
92
+ "Usage: ls [OPTION]... [FILE]...\n"
93
+ "List information about the FILEs (the current directory by default).\n"
94
+ "Sort entries alphabetically if none of -cftuvSUX nor --sort is specified.\n"
95
+ "..."
80
96
81
97
msgid "A few concepts we can learn from the four commands:"
82
98
msgstr ""
@@ -138,6 +154,18 @@ msgid ""
138
154
"usage: prog.py [-h]\n"
139
155
"prog.py: error: unrecognized arguments: foo"
140
156
msgstr ""
157
+ "$ python prog.py\n"
158
+ "$ python prog.py --help\n"
159
+ "usage: prog.py [-h]\n"
160
+ "\n"
161
+ "options:\n"
162
+ " -h, --help show this help message and exit\n"
163
+ "$ python prog.py --verbose\n"
164
+ "usage: prog.py [-h]\n"
165
+ "prog.py: error: unrecognized arguments: --verbose\n"
166
+ "$ python prog.py foo\n"
167
+ "usage: prog.py [-h]\n"
168
+ "prog.py: error: unrecognized arguments: foo"
141
169
142
170
msgid "Here is what is happening:"
143
171
msgstr ""
@@ -191,6 +219,19 @@ msgid ""
191
219
"$ python prog.py foo\n"
192
220
"foo"
193
221
msgstr ""
222
+ "$ python prog.py\n"
223
+ "usage: prog.py [-h] echo\n"
224
+ "prog.py: error: the following arguments are required: echo\n"
225
+ "$ python prog.py --help\n"
226
+ "usage: prog.py [-h] echo\n"
227
+ "\n"
228
+ "positional arguments:\n"
229
+ " echo\n"
230
+ "\n"
231
+ "options:\n"
232
+ " -h, --help show this help message and exit\n"
233
+ "$ python prog.py foo\n"
234
+ "foo"
194
235
195
236
msgid "Here is what's happening:"
196
237
msgstr ""
@@ -246,6 +287,14 @@ msgid ""
246
287
"options:\n"
247
288
" -h, --help show this help message and exit"
248
289
msgstr ""
290
+ "$ python prog.py -h\n"
291
+ "usage: prog.py [-h] echo\n"
292
+ "\n"
293
+ "positional arguments:\n"
294
+ " echo echo the string you use here\n"
295
+ "\n"
296
+ "options:\n"
297
+ " -h, --help show this help message and exit"
249
298
250
299
msgid "Now, how about doing something even more useful::"
251
300
msgstr ""
@@ -266,6 +315,11 @@ msgid ""
266
315
" print(args.square**2)\n"
267
316
"TypeError: unsupported operand type(s) for ** or pow(): 'str' and 'int'"
268
317
msgstr ""
318
+ "$ python prog.py 4\n"
319
+ "Traceback (most recent call last):\n"
320
+ " File \" prog.py\" , line 5, in <module>\n"
321
+ " print(args.square**2)\n"
322
+ "TypeError: unsupported operand type(s) for ** or pow(): 'str' and 'int'"
269
323
270
324
msgid ""
271
325
"That didn't go so well. That's because :mod:`argparse` treats the options we "
@@ -290,6 +344,11 @@ msgid ""
290
344
"usage: prog.py [-h] square\n"
291
345
"prog.py: error: argument square: invalid int value: 'four'"
292
346
msgstr ""
347
+ "$ python prog.py 4\n"
348
+ "16\n"
349
+ "$ python prog.py four\n"
350
+ "usage: prog.py [-h] square\n"
351
+ "prog.py: error: argument square: invalid int value: 'four'"
293
352
294
353
msgid ""
295
354
"That went well. The program now even helpfully quits on bad illegal input "
@@ -724,6 +783,8 @@ msgid ""
724
783
"$ python prog.py 4\n"
725
784
"16"
726
785
msgstr ""
786
+ "$ python prog.py 4\n"
787
+ "16"
727
788
728
789
msgid ""
729
790
"You can go quite far just with what we've learned so far, and we have only "
@@ -968,7 +1029,7 @@ msgid ""
968
1029
msgstr ""
969
1030
970
1031
msgid "$ pybabel extract -o messages.po /usr/lib/python3.12/argparse.py"
971
- msgstr ""
1032
+ msgstr "$ pybabel extract -o messages.po /usr/lib/python3.12/argparse.py "
972
1033
973
1034
msgid ""
974
1035
"This command will extract all translatable strings from the :mod:`argparse` "
0 commit comments