Skip to content

Commit 7a21b1b

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 8998af4 commit 7a21b1b

File tree

324 files changed

+16372
-136989
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

324 files changed

+16372
-136989
lines changed

about.po

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ msgid ""
3131
"`Sphinx`_, a documentation generator originally created for Python and now "
3232
"maintained as an independent project."
3333
msgstr ""
34-
"Dokumentacja Pythona jest generowana ze źródeł `reStructuredText`_ przy "
35-
"użyciu generatora dokumentacji `Sphinx`_, pierwotnie stworzonego dla "
36-
"Pythona, a obecnie utrzymywanego jako niezależny projekt."
3734

3835
msgid ""
3936
"Development of the documentation and its toolchain is an entirely volunteer "
@@ -53,8 +50,6 @@ msgid ""
5350
"Fred L. Drake, Jr., the creator of the original Python documentation toolset "
5451
"and author of much of the content;"
5552
msgstr ""
56-
"Freda L. Drake'a, Jr, twórcy oryginalnego zestawu narzędzi dokumentacyjnych "
57-
"Pythona i autora większości treści;"
5853

5954
msgid ""
6055
"the `Docutils <https://docutils.sourceforge.io/>`_ project for creating "

c-api/allocation.po

Lines changed: 2 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# Rafael Fontenelle <[email protected]>, 2025
7+
# Rafael Fontenelle <[email protected]>, 2024
88
#
99
#, fuzzy
1010
msgid ""
@@ -13,7 +13,7 @@ msgstr ""
1313
"Report-Msgid-Bugs-To: \n"
1414
"POT-Creation-Date: 2025-07-11 15:45+0000\n"
1515
"PO-Revision-Date: 2024-05-11 00:32+0000\n"
16-
"Last-Translator: Rafael Fontenelle <[email protected]>, 2025\n"
16+
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
1818
"MIME-Version: 1.0\n"
1919
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,9 +31,6 @@ msgid ""
3131
"reference. Returns the initialized object. Other fields of the object are "
3232
"not affected."
3333
msgstr ""
34-
"Инициализируйте вновь выделенный объект *op*, указав его тип и начальную "
35-
"ссылку. Возвращает инициализированный объект. Другие поля объекта не "
36-
"затрагиваются."
3734

3835
msgid ""
3936
"This does everything :c:func:`PyObject_Init` does, and also initializes the "
@@ -50,21 +47,12 @@ msgid ""
5047
"the memory allocation is determined from the :c:member:`~PyTypeObject."
5148
"tp_basicsize` field of the type object."
5249
msgstr ""
53-
"Выделяет новый объект в Python используя C-структуру типа *TYPE* и объект "
54-
"Python'a типа *typeobj* (``PyTypeObject*``). Поля не определённые в "
55-
"заголовке объекта Python'a не инициализированы. Вызывающий будет владеть "
56-
"только ссылкой на объект (т.е. счётчик ссылок на него будет равен одному). "
57-
"Размер выделяемой памяти определяется в поле :c:member:`~PyTypeObject."
58-
"tp_basicsize` объекта типа."
5950

6051
msgid ""
6152
"Note that this function is unsuitable if *typeobj* has :c:macro:"
6253
"`Py_TPFLAGS_HAVE_GC` set. For such objects, use :c:func:`PyObject_GC_New` "
6354
"instead."
6455
msgstr ""
65-
"Обратите внимание, что эта функция не подходит, если для *typeobj* "
66-
"установлено значение :c:macro:`Py_TPFLAGS_HAVE_GC`. Для таких объектов "
67-
"вместо этого используйте :c:func:`PyObject_GC_New`."
6856

6957
msgid ""
7058
"Allocate a new Python object using the C structure type *TYPE* and the "
@@ -77,23 +65,12 @@ msgid ""
7765
"same allocation decreases the number of allocations, improving the memory "
7866
"management efficiency."
7967
msgstr ""
80-
"Виділяє новий об'єкт Python, використовуючи структурний тип C *TYPE* та "
81-
"об'єкт типу Python *typeobj* (``PyTypeObject*``). Поля, не визначені в "
82-
"заголовку об'єкта Python, не ініціалізуються. Виділена пам'ять дозволяє "
83-
"розмістити структуру *TYPE* плюс поля *size* (``Py_ssize_t``) розміром, "
84-
"заданим полем :c:member:`~PyTypeObject.tp_itemsize` об'єкта *typeobj*. Це "
85-
"корисно для реалізації об'єктів типу кортежів, які можуть визначати свій "
86-
"розмір під час конструювання. Вбудовування масиву полів в один розподіл "
87-
"зменшує кількість розподілів, покращуючи ефективність управління пам'яттю."
8868

8969
msgid ""
9070
"Note that this function is unsuitable if *typeobj* has :c:macro:"
9171
"`Py_TPFLAGS_HAVE_GC` set. For such objects, use :c:func:`PyObject_GC_NewVar` "
9272
"instead."
9373
msgstr ""
94-
"Обратите внимание, что эта функция не подходит, если для *typeobj* "
95-
"установлено :c:macro:`Py_TPFLAGS_HAVE_GC`. Для таких объектов вместо этого "
96-
"используйте :c:func:`PyObject_GC_NewVar`."
9774

9875
msgid ""
9976
"Releases memory allocated to an object using :c:macro:`PyObject_New` or :c:"
@@ -102,11 +79,6 @@ msgid ""
10279
"fields of the object should not be accessed after this call as the memory is "
10380
"no longer a valid Python object."
10481
msgstr ""
105-
"Звільняє пам'ять, виділену для об'єкта за допомогою :c:macro:`PyObject_New` "
106-
"або :c:macro:`PyObject_NewVar`. Зазвичай викликається з обробника :c:member:"
107-
"`~PyTypeObject.tp_dealloc`, вказаного в типі об'єкта. Після цього виклику "
108-
"не слід звертатися до полів об'єкта, оскільки пам'ять більше не є дійсним "
109-
"об'єктом Python."
11082

11183
msgid ""
11284
"Object which is visible in Python as ``None``. This should only be accessed "

0 commit comments

Comments
 (0)