@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.13\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2025-01-03 14:16 +0000\n "
14+ "POT-Creation-Date : 2025-05-23 14:55 +0000\n "
1515"PO-Revision-Date : 2025-05-08 05:09+0000\n "
1616"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -31,17 +31,10 @@ msgstr "**Kod źródłowy:** :source:`Lib/base64.py`"
3131
3232msgid ""
3333"This module provides functions for encoding binary data to printable ASCII "
34- "characters and decoding such encodings back to binary data. It provides "
35- "encoding and decoding functions for the encodings specified in :rfc:`4648`, "
36- "which defines the Base16, Base32, and Base64 algorithms, and for the de-"
37- "facto standard Ascii85 and Base85 encodings."
38- msgstr ""
39-
40- msgid ""
41- "The :rfc:`4648` encodings are suitable for encoding binary data so that it "
42- "can be safely sent by email, used as parts of URLs, or included as part of "
43- "an HTTP POST request. The encoding algorithm is not the same as the :"
44- "program:`uuencode` program."
34+ "characters and decoding such encodings back to binary data. This includes "
35+ "the :ref:`encodings specified in <base64-rfc-4648>` :rfc:`4648` (Base64, "
36+ "Base32 and Base16) and the non-standard :ref:`Base85 encodings <base64-"
37+ "base-85>`."
4538msgstr ""
4639
4740msgid ""
@@ -53,12 +46,12 @@ msgid ""
5346msgstr ""
5447
5548msgid ""
56- "The legacy interface does not support decoding from strings, but it does "
57- "provide functions for encoding and decoding to and from :term:`file objects "
58- "<file object>`. It only supports the Base64 standard alphabet, and it adds "
59- "newlines every 76 characters as per :rfc:`2045`. Note that if you are "
60- "looking for :rfc:`2045` support you probably want to be looking at the :mod: "
61- "`email` package instead."
49+ "The :ref:` legacy interface <base64-legacy>` does not support decoding from "
50+ "strings, but it does provide functions for encoding and decoding to and "
51+ "from :term:`file objects <file object>`. It only supports the Base64 "
52+ "standard alphabet, and it adds newlines every 76 characters as per :rfc:"
53+ "`2045`. Note that if you are looking for :rfc:`2045` support you probably "
54+ "want to be looking at the :mod: `email` package instead."
6255msgstr ""
6356
6457msgid ""
@@ -72,8 +65,14 @@ msgid ""
7265"added."
7366msgstr ""
7467
75- msgid "The modern interface provides:"
76- msgstr "W nowym interfejsie znajdują się:"
68+ msgid "RFC 4648 Encodings"
69+ msgstr ""
70+
71+ msgid ""
72+ "The :rfc:`4648` encodings are suitable for encoding binary data so that it "
73+ "can be safely sent by email, used as parts of URLs, or included as part of "
74+ "an HTTP POST request."
75+ msgstr ""
7776
7877msgid ""
7978"Encode the :term:`bytes-like object` *s* using Base64 and return the "
@@ -206,6 +205,41 @@ msgid ""
206205"return the decoded :class:`bytes`."
207206msgstr ""
208207
208+ msgid "Base85 Encodings"
209+ msgstr ""
210+
211+ msgid ""
212+ "Base85 encoding is not formally specified but rather a de facto standard, "
213+ "thus different systems perform the encoding differently."
214+ msgstr ""
215+
216+ msgid ""
217+ "The :func:`a85encode` and :func:`b85encode` functions in this module are two "
218+ "implementations of the de facto standard. You should call the function with "
219+ "the Base85 implementation used by the software you intend to work with."
220+ msgstr ""
221+
222+ msgid ""
223+ "The two functions present in this module differ in how they handle the "
224+ "following:"
225+ msgstr ""
226+
227+ msgid "Whether to include enclosing ``<~`` and ``~>`` markers"
228+ msgstr ""
229+
230+ msgid "Whether to include newline characters"
231+ msgstr ""
232+
233+ msgid "The set of ASCII characters used for encoding"
234+ msgstr ""
235+
236+ msgid "Handling of null bytes"
237+ msgstr ""
238+
239+ msgid ""
240+ "Refer to the documentation of the individual functions for more information."
241+ msgstr ""
242+
209243msgid ""
210244"Encode the :term:`bytes-like object` *b* using Ascii85 and return the "
211245"encoded :class:`bytes`."
@@ -284,8 +318,8 @@ msgid ""
284318"zeromq.org/spec/32/>`_ for more information."
285319msgstr ""
286320
287- msgid "The legacy interface: "
288- msgstr "Przestarzały interfejs: "
321+ msgid "Legacy Interface "
322+ msgstr ""
289323
290324msgid ""
291325"Decode the contents of the binary *input* file and write the resulting "
0 commit comments