-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathbinascii.po
More file actions
472 lines (383 loc) · 15.6 KB
/
binascii.po
File metadata and controls
472 lines (383 loc) · 15.6 KB
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
464
465
466
467
468
469
470
471
472
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001 Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# python-doc bot, 2025
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.15\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-05-13 16:14+0000\n"
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
"Last-Translator: python-doc bot, 2025\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:`!binascii` --- Convert between binary and ASCII"
msgstr ""
msgid ""
"The :mod:`!binascii` module contains a number of methods to convert between "
"binary and various ASCII-encoded binary representations. Normally, you will "
"not use these functions directly but use wrapper modules like :mod:`base64` "
"instead. The :mod:`!binascii` module contains low-level functions written in "
"C for greater speed that are used by the higher-level modules."
msgstr ""
msgid ""
"``a2b_*`` functions accept Unicode strings containing only ASCII characters. "
"Other functions only accept :term:`bytes-like objects <bytes-like object>` "
"(such as :class:`bytes`, :class:`bytearray` and other objects that support "
"the buffer protocol)."
msgstr ""
msgid "ASCII-only unicode strings are now accepted by the ``a2b_*`` functions."
msgstr ""
msgid "The :mod:`!binascii` module defines the following functions:"
msgstr ""
msgid ""
"Convert a single line of uuencoded data back to binary and return the binary "
"data. Lines normally contain 45 (binary) bytes, except for the last line. "
"Line data may be followed by whitespace."
msgstr ""
msgid ""
"Convert binary data to a line of ASCII characters, the return value is the "
"converted line, including a newline char. The length of *data* should be at "
"most 45. If *backtick* is true, zeros are represented by ``'`'`` instead of "
"spaces."
msgstr ""
msgid "Added the *backtick* parameter."
msgstr ""
msgid ""
"Convert a block of base64 data back to binary and return the binary data. "
"More than one line may be passed at a time."
msgstr ""
msgid ""
"Optional *alphabet* must be a :class:`bytes` object of length 64 which "
"specifies an alternative alphabet."
msgstr ""
msgid ""
"If *padded* is true, the last group of 4 base 64 alphabet characters must be "
"padded with the '=' character. If *padded* is false, padding is neither "
"required nor recognized: the '=' character is not treated as padding but as "
"a non-alphabet character, which means it is silently discarded when "
"*strict_mode* is false, or causes an :exc:`~binascii.Error` when "
"*strict_mode* is true unless b'=' is included in *ignorechars*."
msgstr ""
msgid ""
"If *ignorechars* is specified, it should be a :term:`bytes-like object` "
"containing characters to ignore from the input when *strict_mode* is true. "
"If *ignorechars* contains the pad character ``'='``, the pad characters "
"presented before the end of the encoded data and the excess pad characters "
"will be ignored. The default value of *strict_mode* is ``True`` if "
"*ignorechars* is specified, ``False`` otherwise."
msgstr ""
msgid ""
"If *strict_mode* is true, only valid base64 data will be converted. Invalid "
"base64 data will raise :exc:`binascii.Error`."
msgstr ""
msgid "Valid base64:"
msgstr ""
msgid "Conforms to :rfc:`4648`."
msgstr ""
msgid "Contains only characters from the base64 alphabet."
msgstr ""
msgid ""
"Contains no excess data after padding (including excess padding, newlines, "
"etc.)."
msgstr ""
msgid "Does not start with a padding."
msgstr ""
msgid ""
"If *canonical* is true, non-zero padding bits in the last group are rejected "
"with :exc:`binascii.Error`, enforcing canonical encoding as defined in :rfc:"
"`4648` section 3.5. This check is independent of *strict_mode*."
msgstr ""
msgid "Added the *strict_mode* parameter."
msgstr ""
msgid ""
"Added the *alphabet*, *canonical*, *ignorechars*, and *padded* parameters."
msgstr ""
msgid ""
"Convert binary data to a line(s) of ASCII characters in base64 coding, as "
"specified in :rfc:`4648`."
msgstr ""
msgid ""
"If *padded* is true (default), pad the encoded data with the '=' character "
"to a size multiple of 4. If *padded* is false, do not add the pad characters."
msgstr ""
msgid ""
"If *wrapcol* is non-zero, insert a newline (``b'\\n'``) character after at "
"most every *wrapcol* characters. If *wrapcol* is zero (default), do not "
"insert any newlines."
msgstr ""
msgid ""
"If *newline* is true (default), a newline character will be added at the end "
"of the output."
msgstr ""
msgid "Added the *newline* parameter."
msgstr ""
msgid "Added the *alphabet*, *padded* and *wrapcol* parameters."
msgstr ""
msgid "Convert Ascii85 data back to binary and return the binary data."
msgstr ""
msgid ""
"Valid Ascii85 data contains characters from the Ascii85 alphabet in groups "
"of five (except for the final group, which may have from two to five "
"characters). Each group encodes 32 bits of binary data in the range from "
"``0`` to ``2 ** 32 - 1``, inclusive. The special character ``z`` is accepted "
"as a short form of the group ``!!!!!``, which encodes four consecutive null "
"bytes. A single-character final group is always rejected as an encoding "
"violation."
msgstr ""
msgid ""
"*foldspaces* is a flag that specifies whether the 'y' short sequence should "
"be accepted as shorthand for 4 consecutive spaces (ASCII 0x20). This feature "
"is not supported by the \"standard\" Ascii85 encoding."
msgstr ""
msgid ""
"*adobe* controls whether the encoded byte sequence is framed with ``<~`` and "
"``~>``, as in a PostScript base-85 string literal. If *adobe* is true, a "
"leading ``<~`` is optionally accepted, while a trailing ``~>`` is "
"*required*, and :exc:`binascii.Error` is raised if it is not found."
msgstr ""
msgid ""
"*ignorechars* should be a :term:`bytes-like object` containing characters to "
"ignore from the input. This should only contain whitespace characters."
msgstr ""
msgid ""
"If *canonical* is true, non-canonical encodings are rejected with :exc:"
"`binascii.Error`. Here \"canonical\" means the encoding that :func:"
"`b2a_ascii85` would produce: the ``z`` abbreviation must be used for all-"
"zero groups (rather than ``!!!!!``), and partial final groups must use the "
"same padding digits as the encoder."
msgstr ""
msgid "Invalid Ascii85 data will raise :exc:`binascii.Error`."
msgstr ""
msgid ""
"Convert binary data to a formatted sequence of ASCII characters in Ascii85 "
"coding. The return value is the converted data."
msgstr ""
msgid ""
"*foldspaces* is an optional flag that uses the special short sequence 'y' "
"instead of 4 consecutive spaces (ASCII 0x20) as supported by 'btoa'. This "
"feature is not supported by the \"standard\" Ascii85 encoding."
msgstr ""
msgid ""
"If *pad* is true, the zero-padding applied to the end of the input is fully "
"retained in the output encoding, as done by ``btoa``, producing an exact "
"multiple of 5 bytes of output. This is not part of the standard encoding "
"used in PDF, as it does not preserve the length of the data."
msgstr ""
msgid ""
"*adobe* controls whether the encoded byte sequence is framed with ``<~`` and "
"``~>``, as in a PostScript base-85 string literal. Note that while "
"ASCII85Decode streams in PDF documents *must* be terminated with ``~>``, "
"they *must not* use a leading ``<~``."
msgstr ""
msgid ""
"Convert Base85 data back to binary and return the binary data. More than one "
"line may be passed at a time."
msgstr ""
msgid ""
"Valid Base85 data contains characters from the Base85 alphabet in groups of "
"five (except for the final group, which may have from two to five "
"characters). Each group encodes 32 bits of binary data in the range from "
"``0`` to ``2 ** 32 - 1``, inclusive. A single-character final group is "
"always rejected as an encoding violation."
msgstr ""
msgid ""
"Optional *alphabet* must be a :class:`bytes` object of length 85 which "
"specifies an alternative alphabet."
msgstr ""
msgid ""
"*ignorechars* should be a :term:`bytes-like object` containing characters to "
"ignore from the input."
msgstr ""
msgid ""
"If *canonical* is true, non-canonical encodings are rejected with :exc:"
"`binascii.Error`. Here \"canonical\" means the encoding that :func:"
"`b2a_base85` would produce: partial final groups must use the same padding "
"digits as the encoder."
msgstr ""
msgid "Invalid Base85 data will raise :exc:`binascii.Error`."
msgstr ""
msgid ""
"Convert binary data to a line of ASCII characters in Base85 coding. The "
"return value is the converted line."
msgstr ""
msgid ""
"Optional *alphabet* must be a :term:`bytes-like object` of length 85 which "
"specifies an alternative alphabet."
msgstr ""
msgid ""
"If *pad* is true, the zero-padding applied to the end of the input is "
"retained in the output, which will always be a multiple of 5 bytes, and thus "
"the length of the data may not be preserved on decoding."
msgstr ""
msgid "Convert base32 data back to binary and return the binary data."
msgstr ""
msgid ""
"Valid base32 data contains characters from the base32 alphabet specified in :"
"rfc:`4648` in groups of eight (if necessary, the final group is padded to "
"eight characters with ``=``). Each group encodes 40 bits of binary data in "
"the range from ``0`` to ``2 ** 40 - 1``, inclusive."
msgstr ""
msgid ""
"This function does not map lowercase characters (which are invalid in "
"standard base32) to their uppercase counterparts, nor does it contextually "
"map ``0`` to ``O`` and ``1`` to ``I``/``L`` as :rfc:`4648` allows."
msgstr ""
msgid ""
"Optional *alphabet* must be a :class:`bytes` object of length 32 which "
"specifies an alternative alphabet."
msgstr ""
msgid ""
"If *padded* is true, the last group of 8 base 32 alphabet characters must be "
"padded with the '=' character. If *padded* is false, the '=' character is "
"treated as other non-alphabet characters (depending on the value of "
"*ignorechars*)."
msgstr ""
msgid ""
"*ignorechars* should be a :term:`bytes-like object` containing characters to "
"ignore from the input. If *ignorechars* contains the pad character ``'='``, "
"the pad characters presented before the end of the encoded data and the "
"excess pad characters will be ignored."
msgstr ""
msgid ""
"If *canonical* is true, non-zero padding bits in the last group are rejected "
"with :exc:`binascii.Error`, enforcing canonical encoding as defined in :rfc:"
"`4648` section 3.5."
msgstr ""
msgid "Invalid base32 data will raise :exc:`binascii.Error`."
msgstr ""
msgid ""
"Convert binary data to a line of ASCII characters in base32 coding, as "
"specified in :rfc:`4648`. The return value is the converted line."
msgstr ""
msgid ""
"Optional *alphabet* must be a :term:`bytes-like object` of length 32 which "
"specifies an alternative alphabet."
msgstr ""
msgid ""
"If *padded* is true (default), pad the encoded data with the '=' character "
"to a size multiple of 8. If *padded* is false, do not add the pad characters."
msgstr ""
msgid ""
"Convert a block of quoted-printable data back to binary and return the "
"binary data. More than one line may be passed at a time. If the optional "
"argument *header* is present and true, underscores will be decoded as spaces."
msgstr ""
msgid ""
"Convert binary data to a line(s) of ASCII characters in quoted-printable "
"encoding. The return value is the converted line(s). If the optional "
"argument *quotetabs* is present and true, all tabs and spaces will be "
"encoded. If the optional argument *istext* is present and true, newlines "
"are not encoded but trailing whitespace will be encoded. If the optional "
"argument *header* is present and true, spaces will be encoded as underscores "
"per :rfc:`1522`. If the optional argument *header* is present and false, "
"newline characters will be encoded as well; otherwise linefeed conversion "
"might corrupt the binary data stream."
msgstr ""
msgid ""
"Compute a 16-bit CRC value of *data*, starting with *value* as the initial "
"CRC, and return the result. This uses the CRC-CCITT polynomial *x*:sup:`16` "
"+ *x*:sup:`12` + *x*:sup:`5` + 1, often represented as 0x1021. This CRC is "
"used in the binhex4 format."
msgstr ""
msgid ""
"Compute CRC-32, the unsigned 32-bit checksum of *data*, starting with an "
"initial CRC of *value*. The default initial CRC is zero. The algorithm is "
"consistent with the ZIP file checksum. Since the algorithm is designed for "
"use as a checksum algorithm, it is not suitable for use as a general hash "
"algorithm. Use as follows::"
msgstr ""
msgid ""
"print(binascii.crc32(b\"hello world\"))\n"
"# Or, in two pieces:\n"
"crc = binascii.crc32(b\"hello\")\n"
"crc = binascii.crc32(b\" world\", crc)\n"
"print('crc32 = {:#010x}'.format(crc))"
msgstr ""
msgid "The result is always unsigned."
msgstr ""
msgid ""
"Return the hexadecimal representation of the binary *data*. Every byte of "
"*data* is converted into the corresponding 2-digit hex representation. The "
"returned bytes object is therefore twice as long as the length of *data*."
msgstr ""
msgid ""
"Similar functionality (but returning a text string) is also conveniently "
"accessible using the :meth:`bytes.hex` method."
msgstr ""
msgid ""
"If *sep* is specified, it must be a single character str or bytes object. It "
"will be inserted in the output after every *bytes_per_sep* input bytes. "
"Separator placement is counted from the right end of the output by default, "
"if you wish to count from the left, supply a negative *bytes_per_sep* value."
msgstr ""
msgid "The *sep* and *bytes_per_sep* parameters were added."
msgstr ""
msgid ""
"Return the binary data represented by the hexadecimal string *hexstr*. This "
"function is the inverse of :func:`b2a_hex`. *hexstr* must contain an even "
"number of hexadecimal digits (which can be upper or lower case), otherwise "
"an :exc:`Error` exception is raised."
msgstr ""
msgid ""
"Similar functionality (accepting only text string arguments, but more "
"liberal towards whitespace) is also accessible using the :meth:`bytes."
"fromhex` class method."
msgstr ""
msgid "Added the *ignorechars* parameter."
msgstr ""
msgid "Exception raised on errors. These are usually programming errors."
msgstr ""
msgid ""
"Exception raised on incomplete data. These are usually not programming "
"errors, but may be handled by reading a little more data and trying again."
msgstr ""
msgid "The Base 64 alphabet according to :rfc:`4648`."
msgstr ""
msgid ""
"The \"URL and filename safe\" Base 64 alphabet according to :rfc:`4648`."
msgstr ""
msgid "The uuencoding alphabet."
msgstr ""
msgid ""
"The Base 64 alphabet used in the :manpage:`crypt(3)` routine and in the "
"GEDCOM format."
msgstr ""
msgid "The Base 64 alphabet used in BinHex 4 (HQX) within the classic Mac OS."
msgstr ""
msgid "The Base85 alphabet."
msgstr ""
msgid "The Ascii85 alphabet."
msgstr ""
msgid "The `Z85 <https://rfc.zeromq.org/spec/32/>`_ alphabet."
msgstr ""
msgid "The Base 32 alphabet according to :rfc:`4648`."
msgstr ""
msgid ""
"The \"Extended Hex\" Base 32 alphabet according to :rfc:`4648`. Data encoded "
"with this alphabet maintains its sort order during bitwise comparisons."
msgstr ""
msgid "Module :mod:`base64`"
msgstr ""
msgid ""
"Support for RFC compliant base64-style encoding in base 16, 32, 64, and 85."
msgstr ""
msgid "Module :mod:`quopri`"
msgstr ""
msgid "Support for quoted-printable encoding used in MIME email messages."
msgstr ""
msgid "module"
msgstr "moduł"
msgid "base64"
msgstr ""