|
| 1 | +# SOME DESCRIPTIVE TITLE. |
| 2 | +# Copyright (C) 2001-2023, Python Software Foundation |
| 3 | +# This file is distributed under the same license as the Python package. |
| 4 | +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. |
| 5 | +# |
| 6 | +# Translators: |
| 7 | +# Transifex Bot <>, 2023 |
| 8 | +# |
| 9 | +#, fuzzy |
| 10 | +msgid "" |
| 11 | +msgstr "" |
| 12 | +"Project-Id-Version: Python 3.11\n" |
| 13 | +"Report-Msgid-Bugs-To: \n" |
| 14 | +"POT-Creation-Date: 2023-05-19 14:13+0000\n" |
| 15 | +"PO-Revision-Date: 2021-06-28 00:47+0000\n" |
| 16 | +"Last-Translator: Transifex Bot <>, 2023\n" |
| 17 | +"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n" |
| 18 | +"MIME-Version: 1.0\n" |
| 19 | +"Content-Type: text/plain; charset=UTF-8\n" |
| 20 | +"Content-Transfer-Encoding: 8bit\n" |
| 21 | +"Language: pl\n" |
| 22 | +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && " |
| 23 | +"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && " |
| 24 | +"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" |
| 25 | + |
| 26 | +msgid "Byte Array Objects" |
| 27 | +msgstr "" |
| 28 | + |
| 29 | +msgid "" |
| 30 | +"This subtype of :c:type:`PyObject` represents a Python bytearray object." |
| 31 | +msgstr "" |
| 32 | + |
| 33 | +msgid "" |
| 34 | +"This instance of :c:type:`PyTypeObject` represents the Python bytearray " |
| 35 | +"type; it is the same object as :class:`bytearray` in the Python layer." |
| 36 | +msgstr "" |
| 37 | + |
| 38 | +msgid "Type check macros" |
| 39 | +msgstr "" |
| 40 | + |
| 41 | +msgid "" |
| 42 | +"Return true if the object *o* is a bytearray object or an instance of a " |
| 43 | +"subtype of the bytearray type. This function always succeeds." |
| 44 | +msgstr "" |
| 45 | + |
| 46 | +msgid "" |
| 47 | +"Return true if the object *o* is a bytearray object, but not an instance of " |
| 48 | +"a subtype of the bytearray type. This function always succeeds." |
| 49 | +msgstr "" |
| 50 | + |
| 51 | +msgid "Direct API functions" |
| 52 | +msgstr "" |
| 53 | + |
| 54 | +msgid "" |
| 55 | +"Return a new bytearray object from any object, *o*, that implements the :ref:" |
| 56 | +"`buffer protocol <bufferobjects>`." |
| 57 | +msgstr "" |
| 58 | + |
| 59 | +msgid "" |
| 60 | +"Create a new bytearray object from *string* and its length, *len*. On " |
| 61 | +"failure, ``NULL`` is returned." |
| 62 | +msgstr "" |
| 63 | + |
| 64 | +msgid "" |
| 65 | +"Concat bytearrays *a* and *b* and return a new bytearray with the result." |
| 66 | +msgstr "" |
| 67 | + |
| 68 | +msgid "Return the size of *bytearray* after checking for a ``NULL`` pointer." |
| 69 | +msgstr "" |
| 70 | + |
| 71 | +msgid "" |
| 72 | +"Return the contents of *bytearray* as a char array after checking for a " |
| 73 | +"``NULL`` pointer. The returned array always has an extra null byte appended." |
| 74 | +msgstr "" |
| 75 | + |
| 76 | +msgid "Resize the internal buffer of *bytearray* to *len*." |
| 77 | +msgstr "" |
| 78 | + |
| 79 | +msgid "Macros" |
| 80 | +msgstr "" |
| 81 | + |
| 82 | +msgid "These macros trade safety for speed and they don't check pointers." |
| 83 | +msgstr "" |
| 84 | + |
| 85 | +msgid "Similar to :c:func:`PyByteArray_AsString`, but without error checking." |
| 86 | +msgstr "" |
| 87 | + |
| 88 | +msgid "Similar to :c:func:`PyByteArray_Size`, but without error checking." |
| 89 | +msgstr "" |
| 90 | + |
| 91 | +msgid "object" |
| 92 | +msgstr "" |
| 93 | + |
| 94 | +msgid "bytearray" |
| 95 | +msgstr "" |
0 commit comments