-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy patherrno.po
463 lines (333 loc) · 8.26 KB
/
errno.po
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2023, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Transifex Bot <>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.11\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-19 14:13+0000\n"
"PO-Revision-Date: 2021-06-28 01:05+0000\n"
"Last-Translator: Transifex Bot <>, 2023\n"
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pl\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
msgid ":mod:`errno` --- Standard errno system symbols"
msgstr ""
msgid ""
"This module makes available standard ``errno`` system symbols. The value of "
"each symbol is the corresponding integer value. The names and descriptions "
"are borrowed from :file:`linux/include/errno.h`, which should be all-"
"inclusive."
msgstr ""
msgid ""
"Dictionary providing a mapping from the errno value to the string name in "
"the underlying system. For instance, ``errno.errorcode[errno.EPERM]`` maps "
"to ``'EPERM'``."
msgstr ""
msgid ""
"To translate a numeric error code to an error message, use :func:`os."
"strerror`."
msgstr ""
msgid ""
"Of the following list, symbols that are not used on the current platform are "
"not defined by the module. The specific list of defined symbols is "
"available as ``errno.errorcode.keys()``. Symbols available can include:"
msgstr ""
msgid ""
"Operation not permitted. This error is mapped to the exception :exc:"
"`PermissionError`."
msgstr ""
msgid ""
"No such file or directory. This error is mapped to the exception :exc:"
"`FileNotFoundError`."
msgstr ""
msgid ""
"No such process. This error is mapped to the exception :exc:"
"`ProcessLookupError`."
msgstr ""
msgid ""
"Interrupted system call. This error is mapped to the exception :exc:"
"`InterruptedError`."
msgstr ""
msgid "I/O error"
msgstr ""
msgid "No such device or address"
msgstr ""
msgid "Arg list too long"
msgstr ""
msgid "Exec format error"
msgstr ""
msgid "Bad file number"
msgstr ""
msgid ""
"No child processes. This error is mapped to the exception :exc:"
"`ChildProcessError`."
msgstr ""
msgid ""
"Try again. This error is mapped to the exception :exc:`BlockingIOError`."
msgstr ""
msgid "Out of memory"
msgstr ""
msgid ""
"Permission denied. This error is mapped to the exception :exc:"
"`PermissionError`."
msgstr ""
msgid "Bad address"
msgstr ""
msgid "Block device required"
msgstr ""
msgid "Device or resource busy"
msgstr ""
msgid ""
"File exists. This error is mapped to the exception :exc:`FileExistsError`."
msgstr ""
msgid "Cross-device link"
msgstr ""
msgid "No such device"
msgstr ""
msgid ""
"Not a directory. This error is mapped to the exception :exc:"
"`NotADirectoryError`."
msgstr ""
msgid ""
"Is a directory. This error is mapped to the exception :exc:"
"`IsADirectoryError`."
msgstr ""
msgid "Invalid argument"
msgstr ""
msgid "File table overflow"
msgstr ""
msgid "Too many open files"
msgstr ""
msgid "Not a typewriter"
msgstr ""
msgid "Text file busy"
msgstr ""
msgid "File too large"
msgstr ""
msgid "No space left on device"
msgstr ""
msgid "Illegal seek"
msgstr ""
msgid "Read-only file system"
msgstr ""
msgid "Too many links"
msgstr ""
msgid ""
"Broken pipe. This error is mapped to the exception :exc:`BrokenPipeError`."
msgstr ""
msgid "Math argument out of domain of func"
msgstr ""
msgid "Math result not representable"
msgstr ""
msgid "Resource deadlock would occur"
msgstr ""
msgid "File name too long"
msgstr ""
msgid "No record locks available"
msgstr ""
msgid "Function not implemented"
msgstr ""
msgid "Directory not empty"
msgstr ""
msgid "Too many symbolic links encountered"
msgstr ""
msgid ""
"Operation would block. This error is mapped to the exception :exc:"
"`BlockingIOError`."
msgstr ""
msgid "No message of desired type"
msgstr ""
msgid "Identifier removed"
msgstr ""
msgid "Channel number out of range"
msgstr ""
msgid "Level 2 not synchronized"
msgstr ""
msgid "Level 3 halted"
msgstr ""
msgid "Level 3 reset"
msgstr ""
msgid "Link number out of range"
msgstr ""
msgid "Protocol driver not attached"
msgstr ""
msgid "No CSI structure available"
msgstr ""
msgid "Level 2 halted"
msgstr ""
msgid "Invalid exchange"
msgstr ""
msgid "Invalid request descriptor"
msgstr ""
msgid "Exchange full"
msgstr ""
msgid "No anode"
msgstr ""
msgid "Invalid request code"
msgstr ""
msgid "Invalid slot"
msgstr ""
msgid "File locking deadlock error"
msgstr ""
msgid "Bad font file format"
msgstr ""
msgid "Device not a stream"
msgstr ""
msgid "No data available"
msgstr ""
msgid "Timer expired"
msgstr ""
msgid "Out of streams resources"
msgstr ""
msgid "Machine is not on the network"
msgstr ""
msgid "Package not installed"
msgstr ""
msgid "Object is remote"
msgstr ""
msgid "Link has been severed"
msgstr ""
msgid "Advertise error"
msgstr ""
msgid "Srmount error"
msgstr ""
msgid "Communication error on send"
msgstr ""
msgid "Protocol error"
msgstr ""
msgid "Multihop attempted"
msgstr ""
msgid "RFS specific error"
msgstr ""
msgid "Not a data message"
msgstr ""
msgid "Value too large for defined data type"
msgstr ""
msgid "Name not unique on network"
msgstr ""
msgid "File descriptor in bad state"
msgstr ""
msgid "Remote address changed"
msgstr ""
msgid "Can not access a needed shared library"
msgstr ""
msgid "Accessing a corrupted shared library"
msgstr ""
msgid ".lib section in a.out corrupted"
msgstr ""
msgid "Attempting to link in too many shared libraries"
msgstr ""
msgid "Cannot exec a shared library directly"
msgstr ""
msgid "Illegal byte sequence"
msgstr ""
msgid "Interrupted system call should be restarted"
msgstr ""
msgid "Streams pipe error"
msgstr ""
msgid "Too many users"
msgstr ""
msgid "Socket operation on non-socket"
msgstr ""
msgid "Destination address required"
msgstr ""
msgid "Message too long"
msgstr ""
msgid "Protocol wrong type for socket"
msgstr ""
msgid "Protocol not available"
msgstr ""
msgid "Protocol not supported"
msgstr ""
msgid "Socket type not supported"
msgstr ""
msgid "Operation not supported on transport endpoint"
msgstr ""
msgid "Protocol family not supported"
msgstr ""
msgid "Address family not supported by protocol"
msgstr ""
msgid "Address already in use"
msgstr ""
msgid "Cannot assign requested address"
msgstr ""
msgid "Network is down"
msgstr ""
msgid "Network is unreachable"
msgstr ""
msgid "Network dropped connection because of reset"
msgstr ""
msgid ""
"Software caused connection abort. This error is mapped to the exception :exc:"
"`ConnectionAbortedError`."
msgstr ""
msgid ""
"Connection reset by peer. This error is mapped to the exception :exc:"
"`ConnectionResetError`."
msgstr ""
msgid "No buffer space available"
msgstr ""
msgid "Transport endpoint is already connected"
msgstr ""
msgid "Transport endpoint is not connected"
msgstr ""
msgid ""
"Cannot send after transport endpoint shutdown. This error is mapped to the "
"exception :exc:`BrokenPipeError`."
msgstr ""
msgid "Too many references: cannot splice"
msgstr ""
msgid ""
"Connection timed out. This error is mapped to the exception :exc:"
"`TimeoutError`."
msgstr ""
msgid ""
"Connection refused. This error is mapped to the exception :exc:"
"`ConnectionRefusedError`."
msgstr ""
msgid "Host is down"
msgstr ""
msgid "No route to host"
msgstr ""
msgid ""
"Operation already in progress. This error is mapped to the exception :exc:"
"`BlockingIOError`."
msgstr ""
msgid ""
"Operation now in progress. This error is mapped to the exception :exc:"
"`BlockingIOError`."
msgstr ""
msgid "Stale NFS file handle"
msgstr ""
msgid "Structure needs cleaning"
msgstr ""
msgid "Not a XENIX named type file"
msgstr ""
msgid "No XENIX semaphores available"
msgstr ""
msgid "Is a named type file"
msgstr ""
msgid "Remote I/O error"
msgstr ""
msgid "Quota exceeded"
msgstr ""
msgid "Interface output queue is full"
msgstr ""
msgid ""
"Capabilities insufficient. This error is mapped to the exception :exc:"
"`PermissionError`."
msgstr ""
msgid ":ref:`Availability <availability>`: WASI, FreeBSD"
msgstr ""