Skip to content

Commit defcf24

Browse files
GitHub Action's update-translation jobrffontenelle
andcommitted
Update translation from Transifex
Co-Authored-By: Rafael Fontenelle <[email protected]>
1 parent e299dae commit defcf24

File tree

353 files changed

+58329
-8074
lines changed

Some content is hidden

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

353 files changed

+58329
-8074
lines changed

about.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-05-30 16:16+0000\n"
14+
"POT-Creation-Date: 2025-07-11 16:41+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

bugs.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-05-30 16:16+0000\n"
14+
"POT-Creation-Date: 2025-07-04 16:20+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/abstract.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-05-30 16:16+0000\n"
14+
"POT-Creation-Date: 2025-07-11 16:41+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/allocation.po

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# Rafael Fontenelle <[email protected]>, 2023
7+
# Rafael Fontenelle <[email protected]>, 2025
88
#
99
#, fuzzy
1010
msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-05-30 16:16+0000\n"
14+
"POT-Creation-Date: 2025-07-11 16:41+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
16-
"Last-Translator: Rafael Fontenelle <[email protected]>, 2023\n"
16+
"Last-Translator: Rafael Fontenelle <[email protected]>, 2025\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"
@@ -55,6 +55,12 @@ msgid ""
5555
"the memory allocation is determined from the :c:member:`~PyTypeObject."
5656
"tp_basicsize` field of the type object."
5757
msgstr ""
58+
"Выделяет новый объект в Python используя C-структуру типа *TYPE* и объект "
59+
"Python'a типа *typeobj* (``PyTypeObject*``). Поля не определённые в "
60+
"заголовке объекта Python'a не инициализированы. Вызывающий будет владеть "
61+
"только ссылкой на объект (т.е. счётчик ссылок на него будет равен одному). "
62+
"Размер выделяемой памяти определяется в поле :c:member:`~PyTypeObject."
63+
"tp_basicsize` объекта типа."
5864

5965
msgid ""
6066
"Allocate a new Python object using the C structure type *TYPE* and the "
@@ -67,6 +73,14 @@ msgid ""
6773
"same allocation decreases the number of allocations, improving the memory "
6874
"management efficiency."
6975
msgstr ""
76+
"Виділяє новий об'єкт Python, використовуючи структурний тип C *TYPE* та "
77+
"об'єкт типу Python *typeobj* (``PyTypeObject*``). Поля, не визначені в "
78+
"заголовку об'єкта Python, не ініціалізуються. Виділена пам'ять дозволяє "
79+
"розмістити структуру *TYPE* плюс поля *size* (``Py_ssize_t``) розміром, "
80+
"заданим полем :c:member:`~PyTypeObject.tp_itemsize` об'єкта *typeobj*. Це "
81+
"корисно для реалізації об'єктів типу кортежів, які можуть визначати свій "
82+
"розмір під час конструювання. Вбудовування масиву полів в один розподіл "
83+
"зменшує кількість розподілів, покращуючи ефективність управління пам'яттю."
7084

7185
msgid ""
7286
"Releases memory allocated to an object using :c:macro:`PyObject_New` or :c:"
@@ -75,6 +89,11 @@ msgid ""
7589
"fields of the object should not be accessed after this call as the memory is "
7690
"no longer a valid Python object."
7791
msgstr ""
92+
"Звільняє пам'ять, виділену для об'єкта за допомогою :c:macro:`PyObject_New` "
93+
"або :c:macro:`PyObject_NewVar`. Зазвичай викликається з обробника :c:member:"
94+
"`~PyTypeObject.tp_dealloc`, вказаного в типі об'єкта. Після цього виклику "
95+
"не слід звертатися до полів об'єкта, оскільки пам'ять більше не є дійсним "
96+
"об'єктом Python."
7897

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

c-api/apiabiversion.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.11\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-05-16 16:11+0000\n"
15+
"POT-Creation-Date: 2025-06-27 16:11+0000\n"
1616
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
1717
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

0 commit comments

Comments
 (0)