|
| 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 | +# Rafael Fontenelle <rffontenelle@gmail.com>, 2023 |
| 8 | +# |
| 9 | +#, fuzzy |
| 10 | +msgid "" |
| 11 | +msgstr "" |
| 12 | +"Project-Id-Version: Python 3.10\n" |
| 13 | +"Report-Msgid-Bugs-To: \n" |
| 14 | +"POT-Creation-Date: 2023-11-24 18:59+0000\n" |
| 15 | +"PO-Revision-Date: 2022-11-05 17:21+0000\n" |
| 16 | +"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 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 "Allocating Objects on the Heap" |
| 27 | +msgstr "Przydzielanie obiektów na stercie" |
| 28 | + |
| 29 | +msgid "" |
| 30 | +"Initialize a newly allocated object *op* with its type and initial " |
| 31 | +"reference. Returns the initialized object. If *type* indicates that the " |
| 32 | +"object participates in the cyclic garbage detector, it is added to the " |
| 33 | +"detector's set of observed objects. Other fields of the object are not " |
| 34 | +"affected." |
| 35 | +msgstr "" |
| 36 | +"Inicjalizacja nowo przydzielonego obiektu o nazwie *op*, określa jego typ " |
| 37 | +"oraz początkowe odniesienie. Funkcja zwraca zainicjowany obiekt. Jeżeli " |
| 38 | +"wartość *type* wskazuje, że obiekt bierze udział w detekcji cyklicznych " |
| 39 | +"zbędnych danych \"garbage detector\", to zostaje on dodany do zbioru " |
| 40 | +"obiektów obserwowanych przez detektor. Pozostałe pola obiektu pozostają " |
| 41 | +"niezmienione." |
| 42 | + |
| 43 | +msgid "" |
| 44 | +"This does everything :c:func:`PyObject_Init` does, and also initializes the " |
| 45 | +"length information for a variable-size object." |
| 46 | +msgstr "" |
| 47 | +"To wszystko, czym zajmie się funkcja :c:func:`PyObject_Init`, a ponadto " |
| 48 | +"zainicjuje informacje o długości dla obiektu o zmiennym rozmiarze." |
| 49 | + |
| 50 | +msgid "" |
| 51 | +"Allocate a new Python object using the C structure type *TYPE* and the " |
| 52 | +"Python type object *type*. Fields not defined by the Python object header " |
| 53 | +"are not initialized. The caller will own the only reference to the object (i." |
| 54 | +"e. its reference count will be one). The size of the memory allocation is " |
| 55 | +"determined from the :c:member:`~PyTypeObject.tp_basicsize` field of the type " |
| 56 | +"object." |
| 57 | +msgstr "" |
| 58 | + |
| 59 | +msgid "" |
| 60 | +"Allocate a new Python object using the C structure type *TYPE* and the " |
| 61 | +"Python type object *type*. Fields not defined by the Python object header " |
| 62 | +"are not initialized. The allocated memory allows for the *TYPE* structure " |
| 63 | +"plus *size* fields of the size given by the :c:member:`~PyTypeObject." |
| 64 | +"tp_itemsize` field of *type*. This is useful for implementing objects like " |
| 65 | +"tuples, which are able to determine their size at construction time. " |
| 66 | +"Embedding the array of fields into the same allocation decreases the number " |
| 67 | +"of allocations, improving the memory management efficiency." |
| 68 | +msgstr "" |
| 69 | + |
| 70 | +msgid "" |
| 71 | +"Releases memory allocated to an object using :c:func:`PyObject_New` or :c:" |
| 72 | +"func:`PyObject_NewVar`. This is normally called from the :c:member:" |
| 73 | +"`~PyTypeObject.tp_dealloc` handler specified in the object's type. The " |
| 74 | +"fields of the object should not be accessed after this call as the memory is " |
| 75 | +"no longer a valid Python object." |
| 76 | +msgstr "" |
| 77 | + |
| 78 | +msgid "" |
| 79 | +"Object which is visible in Python as ``None``. This should only be accessed " |
| 80 | +"using the :c:macro:`Py_None` macro, which evaluates to a pointer to this " |
| 81 | +"object." |
| 82 | +msgstr "" |
| 83 | +"Obiekt widoczny w Pythonie jako ``None``. Dostęp do tego należy uzyskać " |
| 84 | +"wyłącznie za pomocą makra :c:macro:`Py_None`, którego wartością jest " |
| 85 | +"wskaźnik do tego obiektu." |
| 86 | + |
| 87 | +msgid ":c:func:`PyModule_Create`" |
| 88 | +msgstr ":c:func:`PyModule_Create`" |
| 89 | + |
| 90 | +msgid "To allocate and create extension modules." |
| 91 | +msgstr "Przydzielanie i tworzenie modułów rozszerzeń." |
0 commit comments