Skip to content

Commit b0b2e31

Browse files
GitHub Action's update-translation jobrffontenelle
andcommitted
Update translation from Transifex
Co-Authored-By: Rafael Fontenelle <rffontenelle@gmail.com>
1 parent 6da9afc commit b0b2e31

File tree

264 files changed

+33440
-4288
lines changed

Some content is hidden

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

264 files changed

+33440
-4288
lines changed

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.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-06-20 16:58+0000\n"
14+
"POT-Creation-Date: 2025-07-11 17:17+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/allocation.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.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-06-06 16:52+0000\n"
14+
"POT-Creation-Date: 2025-06-27 16:51+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/arg.po

Lines changed: 359 additions & 45 deletions
Large diffs are not rendered by default.

c-api/bool.po

Lines changed: 9 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 <rffontenelle@gmail.com>, 2024
7+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2025
88
#
99
#, fuzzy
1010
msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-06-27 16:51+0000\n"
14+
"POT-Creation-Date: 2025-07-11 17:17+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
16-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
16+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 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"
@@ -32,6 +32,10 @@ msgid ""
3232
"normal creation and deletion functions don't apply to booleans. The "
3333
"following macros are available, however."
3434
msgstr ""
35+
"Boolean dalam Python diimplementasikan sebagai subkelas integer. Hanya ada "
36+
"dua boolean, :const:`Py_False` dan :const:`Py_True`. Dengan demikian, fungsi "
37+
"pembuatan dan penghapusan normal tidak berlaku untuk boolean. Namun, makro "
38+
"berikut tersedia."
3539

3640
msgid ""
3741
"Return true if *o* is of type :c:data:`PyBool_Type`. This function always "
@@ -44,6 +48,8 @@ msgid ""
4448
"The Python ``False`` object. This object has no methods. It needs to be "
4549
"treated just like any other object with respect to reference counts."
4650
msgstr ""
51+
"Objek Python ``False``. Objek ini tidak memiliki metode. Ini perlu "
52+
"diperlakukan sama seperti objek lain sehubungan dengan jumlah referensi."
4753

4854
msgid ""
4955
"The Python ``True`` object. This object has no methods. It needs to be "

c-api/buffer.po

Lines changed: 233 additions & 27 deletions
Large diffs are not rendered by default.

c-api/bytes.po

Lines changed: 97 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-06-13 16:51+0000\n"
14+
"POT-Creation-Date: 2025-07-11 17:17+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+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"
@@ -24,42 +24,56 @@ msgstr ""
2424
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
2525

2626
msgid "Bytes Objects"
27-
msgstr ""
27+
msgstr "Bayt Nesneleri"
2828

2929
msgid ""
3030
"These functions raise :exc:`TypeError` when expecting a bytes parameter and "
3131
"called with a non-bytes parameter."
3232
msgstr ""
33+
"Ці функції викликають :exc:`TypeError`, коли очікується параметр bytes і "
34+
"викликаються з параметром, який не є байтом."
3335

3436
msgid "This subtype of :c:type:`PyObject` represents a Python bytes object."
35-
msgstr ""
37+
msgstr "Цей підтип :c:type:`PyObject` представляє об’єкт Python bytes."
3638

3739
msgid ""
3840
"This instance of :c:type:`PyTypeObject` represents the Python bytes type; it "
3941
"is the same object as :class:`bytes` in the Python layer."
4042
msgstr ""
43+
"Цей екземпляр :c:type:`PyTypeObject` представляє тип Python bytes; це той "
44+
"самий об’єкт, що й :class:`bytes` на рівні Python."
4145

4246
msgid ""
4347
"Return true if the object *o* is a bytes object or an instance of a subtype "
4448
"of the bytes type. This function always succeeds."
4549
msgstr ""
50+
"Повертає true, якщо об’єкт *o* є об’єктом bytes або екземпляром підтипу типу "
51+
"bytes. Ця функція завжди успішна."
4652

4753
msgid ""
4854
"Return true if the object *o* is a bytes object, but not an instance of a "
4955
"subtype of the bytes type. This function always succeeds."
5056
msgstr ""
57+
"Повертає true, якщо об’єкт *o* є об’єктом bytes, але не екземпляром підтипу "
58+
"типу bytes. Ця функція завжди успішна."
5159

5260
msgid ""
5361
"Return a new bytes object with a copy of the string *v* as value on success, "
5462
"and ``NULL`` on failure. The parameter *v* must not be ``NULL``; it will "
5563
"not be checked."
5664
msgstr ""
65+
"Повертає новий об’єкт bytes із копією рядка *v* як значення в разі успіху та "
66+
"``NULL`` у разі помилки. Параметр *v* не має бути ``NULL``; перевірятися не "
67+
"буде."
5768

5869
msgid ""
5970
"Return a new bytes object with a copy of the string *v* as value and length "
6071
"*len* on success, and ``NULL`` on failure. If *v* is ``NULL``, the contents "
6172
"of the bytes object are uninitialized."
6273
msgstr ""
74+
"Повертає новий об’єкт bytes із копією рядка *v* як значення та довжиною "
75+
"*len* у разі успіху та ``NULL`` у разі помилки. Якщо *v* має значення "
76+
"``NULL``, вміст об’єкта bytes не ініціалізується."
6377

6478
msgid ""
6579
"Take a C :c:func:`printf`\\ -style *format* string and a variable number of "
@@ -69,9 +83,14 @@ msgid ""
6983
"characters in the *format* string. The following format characters are "
7084
"allowed:"
7185
msgstr ""
86+
"Візьміть рядок *format* у стилі C :c:func:`printf`\\ і змінну кількість "
87+
"аргументів, обчисліть розмір результуючого об’єкта Python bytes і поверніть "
88+
"об’єкт bytes із відформатованими значеннями. Змінні аргументи мають бути "
89+
"типу C і точно відповідати символам формату в рядку *format*. Дозволяються "
90+
"такі символи формату:"
7291

7392
msgid "Format Characters"
74-
msgstr ""
93+
msgstr "Формат символів"
7594

7695
msgid "Type"
7796
msgstr "Typ"
@@ -80,129 +99,139 @@ msgid "Comment"
8099
msgstr "komentarz"
81100

82101
msgid ":attr:`%%`"
83-
msgstr ""
102+
msgstr ":attr:`%%`"
84103

85104
msgid "*n/a*"
86105
msgstr "*n/a*"
87106

88107
msgid "The literal % character."
89-
msgstr ""
108+
msgstr "Літеральний символ %."
90109

91110
msgid ":attr:`%c`"
92-
msgstr ""
111+
msgstr ":attr:`%c`"
93112

94113
msgid "int"
95114
msgstr "int"
96115

97116
msgid "A single byte, represented as a C int."
98-
msgstr ""
117+
msgstr "Один байт, представлений як C int."
99118

100119
msgid ":attr:`%d`"
101-
msgstr ""
120+
msgstr ":attr:`%d`"
102121

103122
msgid "Equivalent to ``printf(\"%d\")``. [1]_"
104-
msgstr ""
123+
msgstr "Еквівалент ``printf(\"%d\")``. [1]_"
105124

106125
msgid ":attr:`%u`"
107-
msgstr ""
126+
msgstr ":attr:`%u`"
108127

109128
msgid "unsigned int"
110129
msgstr "nieoznaczony typ int"
111130

112131
msgid "Equivalent to ``printf(\"%u\")``. [1]_"
113-
msgstr ""
132+
msgstr "Еквівалент ``printf(\"%u\")``. [1]_"
114133

115134
msgid ":attr:`%ld`"
116-
msgstr ""
135+
msgstr ":attr:`%ld`"
117136

118137
msgid "long"
119-
msgstr ""
138+
msgstr "long"
120139

121140
msgid "Equivalent to ``printf(\"%ld\")``. [1]_"
122-
msgstr ""
141+
msgstr "Еквівалент ``printf(\"%ld\")``. [1]_"
123142

124143
msgid ":attr:`%lu`"
125-
msgstr ""
144+
msgstr ":attr:`%lu`"
126145

127146
msgid "unsigned long"
128147
msgstr "nieoznaczony typ długi"
129148

130149
msgid "Equivalent to ``printf(\"%lu\")``. [1]_"
131-
msgstr ""
150+
msgstr "Еквівалент ``printf(\"%lu\")``. [1]_"
132151

133152
msgid ":attr:`%zd`"
134-
msgstr ""
153+
msgstr ":attr:`%zd`"
135154

136155
msgid ":c:type:`\\ Py_ssize_t`"
137-
msgstr ""
156+
msgstr ":c:type:`\\ Py_ssize_t`"
138157

139158
msgid "Equivalent to ``printf(\"%zd\")``. [1]_"
140-
msgstr ""
159+
msgstr "Еквівалент ``printf(\"%zd\")``. [1]_"
141160

142161
msgid ":attr:`%zu`"
143-
msgstr ""
162+
msgstr ":attr:`%zu`"
144163

145164
msgid "size_t"
146165
msgstr "size_t"
147166

148167
msgid "Equivalent to ``printf(\"%zu\")``. [1]_"
149-
msgstr ""
168+
msgstr "Еквівалент ``printf(\"%zu\")``. [1]_"
150169

151170
msgid ":attr:`%i`"
152-
msgstr ""
171+
msgstr ":attr:`%i`"
153172

154173
msgid "Equivalent to ``printf(\"%i\")``. [1]_"
155-
msgstr ""
174+
msgstr "Еквівалент ``printf(\"%i\")``. [1]_"
156175

157176
msgid ":attr:`%x`"
158-
msgstr ""
177+
msgstr ":attr:`%x`"
159178

160179
msgid "Equivalent to ``printf(\"%x\")``. [1]_"
161-
msgstr ""
180+
msgstr "Еквівалент ``printf(\"%x\")``. [1]_"
162181

163182
msgid ":attr:`%s`"
164-
msgstr ""
183+
msgstr ":attr:`%s`"
165184

166185
msgid "const char\\*"
167-
msgstr ""
186+
msgstr "const char\\*"
168187

169188
msgid "A null-terminated C character array."
170-
msgstr ""
189+
msgstr "Масив символів C із закінченням нулем."
171190

172191
msgid ":attr:`%p`"
173-
msgstr ""
192+
msgstr ":attr:`%p`"
174193

175194
msgid "const void\\*"
176-
msgstr ""
195+
msgstr "const void\\*"
177196

178197
msgid ""
179198
"The hex representation of a C pointer. Mostly equivalent to "
180199
"``printf(\"%p\")`` except that it is guaranteed to start with the literal "
181200
"``0x`` regardless of what the platform's ``printf`` yields."
182201
msgstr ""
202+
"Шістнадцяткове представлення покажчика C. Здебільшого еквівалентний "
203+
"``printf(\"%p\")`` за винятком того, що він гарантовано починається з "
204+
"літералу ``0x`` незалежно від того, що дає ``printf`` платформи."
183205

184206
msgid ""
185207
"An unrecognized format character causes all the rest of the format string to "
186208
"be copied as-is to the result object, and any extra arguments discarded."
187209
msgstr ""
210+
"Нерозпізнаний символ формату спричиняє копіювання всієї решти рядка формату "
211+
"в об’єкт результату як є, а будь-які додаткові аргументи відкидаються."
188212

189213
msgid ""
190214
"For integer specifiers (d, u, ld, lu, zd, zu, i, x): the 0-conversion flag "
191215
"has effect even when a precision is given."
192216
msgstr ""
217+
"Для цілочисельних специфікаторів (d, u, ld, lu, zd, zu, i, x): прапор 0-"
218+
"конверсії діє, навіть якщо задано точність."
193219

194220
msgid ""
195221
"Identical to :c:func:`PyBytes_FromFormat` except that it takes exactly two "
196222
"arguments."
197223
msgstr ""
224+
"Ідентичний :c:func:`PyBytes_FromFormat` за винятком того, що він приймає "
225+
"рівно два аргументи."
198226

199227
msgid ""
200228
"Return the bytes representation of object *o* that implements the buffer "
201229
"protocol."
202230
msgstr ""
231+
"Повертає представлення байтів об’єкта *o*, який реалізує протокол буфера."
203232

204233
msgid "Return the length of the bytes in bytes object *o*."
205-
msgstr ""
234+
msgstr "Повертає довжину байтів у байтах об'єкт *o*."
206235

207236
msgid "Macro form of :c:func:`PyBytes_Size` but without error checking."
208237
msgstr ""
@@ -216,6 +245,13 @@ msgid ""
216245
"deallocated. If *o* is not a bytes object at all, :c:func:"
217246
"`PyBytes_AsString` returns ``NULL`` and raises :exc:`TypeError`."
218247
msgstr ""
248+
"Повернути вказівник на вміст *o*. Покажчик посилається на внутрішній буфер "
249+
"*o*, який складається з ``len(o) + 1`` байтів. Останній байт у буфері завжди "
250+
"нульовий, незалежно від того, чи є інші нульові байти. Дані не можна "
251+
"змінювати жодним чином, якщо об’єкт не було щойно створено за допомогою "
252+
"``PyBytes_FromStringAndSize(NULL, size)``. Його не можна звільняти. Якщо *o* "
253+
"взагалі не є об’єктом bytes, :c:func:`PyBytes_AsString` повертає ``NULL`` і "
254+
"викликає :exc:`TypeError`."
219255

220256
msgid "Macro form of :c:func:`PyBytes_AsString` but without error checking."
221257
msgstr ""
@@ -230,6 +266,9 @@ msgid ""
230266
"bytes; if it does, the function returns ``-1`` and a :exc:`ValueError` is "
231267
"raised."
232268
msgstr ""
269+
"Якщо *length* дорівнює ``NULL``, об’єкт bytes може не містити вбудованих "
270+
"нульових байтів; якщо це так, функція повертає ``-1`` і викликає :exc:"
271+
"`ValueError`."
233272

234273
msgid ""
235274
"The buffer refers to an internal buffer of *obj*, which includes an "
@@ -239,11 +278,19 @@ msgid ""
239278
"*obj* is not a bytes object at all, :c:func:`PyBytes_AsStringAndSize` "
240279
"returns ``-1`` and raises :exc:`TypeError`."
241280
msgstr ""
281+
"Буфер відноситься до внутрішнього буфера *obj*, який містить додатковий "
282+
"нульовий байт у кінці (не враховується в *довжині*). Дані не можна змінювати "
283+
"жодним чином, якщо об’єкт не було щойно створено за допомогою "
284+
"``PyBytes_FromStringAndSize(NULL, size)``. Його не можна звільняти. Якщо "
285+
"*obj* взагалі не є об’єктом bytes, :c:func:`PyBytes_AsStringAndSize` "
286+
"повертає ``-1`` і викликає :exc:`TypeError`."
242287

243288
msgid ""
244289
"Previously, :exc:`TypeError` was raised when embedded null bytes were "
245290
"encountered in the bytes object."
246291
msgstr ""
292+
"Раніше :exc:`TypeError` виникало, коли в об’єкті bytes зустрічалися "
293+
"вбудовані нульові байти."
247294

248295
msgid ""
249296
"Create a new bytes object in *\\*bytes* containing the contents of *newpart* "
@@ -252,12 +299,20 @@ msgid ""
252299
"created, the old reference to *bytes* will still be discarded and the value "
253300
"of *\\*bytes* will be set to ``NULL``; the appropriate exception will be set."
254301
msgstr ""
302+
"Створіть новий об’єкт bytes у *\\*bytes*, що містить вміст *newpart*, "
303+
"доданий до *bytes*; абонент буде володіти новим посиланням. Посилання на "
304+
"старе значення *bytes* буде викрадено. Якщо новий об’єкт неможливо створити, "
305+
"старе посилання на *bytes* все одно буде відкинуто, а значення *\\*bytes* "
306+
"буде встановлено на ``NULL``; буде встановлено відповідний виняток."
255307

256308
msgid ""
257309
"Create a new bytes object in *\\*bytes* containing the contents of *newpart* "
258310
"appended to *bytes*. This version releases the :term:`strong reference` to "
259311
"*newpart* (i.e. decrements its reference count)."
260312
msgstr ""
313+
"Создайте новый объект bytes в *\\*bytes*, содержащий содержимое *newpart*, "
314+
"добавленное к *bytes*. Эта версия освобождает :term:`strong ссылку` на "
315+
"*newpart* (т.е. уменьшает ее счетчик ссылок)."
261316

262317
msgid ""
263318
"A way to resize a bytes object even though it is \"immutable\". Only use "
@@ -271,3 +326,13 @@ msgid ""
271326
"*\\*bytes* is deallocated, *\\*bytes* is set to ``NULL``, :exc:`MemoryError` "
272327
"is set, and ``-1`` is returned."
273328
msgstr ""
329+
"Спосіб змінити розмір об'єкта bytes, навіть якщо він \"незмінний\". "
330+
"Використовуйте це лише для створення абсолютно нового об’єкта bytes; не "
331+
"використовуйте це, якщо байти можуть бути вже відомі в інших частинах коду. "
332+
"Виклик цієї функції буде помилковим, якщо refcount для об’єкта вхідних "
333+
"байтів не один. Передайте адресу існуючого об’єкта bytes як lvalue (його "
334+
"можна записати) і новий бажаний розмір. У разі успіху *\\*bytes* містить "
335+
"змінений об’єкт байтів і повертає ``0``; адреса в *\\*байтах* може "
336+
"відрізнятися від введеного значення. Якщо перерозподіл не вдається, вихідний "
337+
"об’єкт bytes у *\\*bytes* звільняється, *\\*bytes* встановлюється на "
338+
"``NULL``, встановлюється :exc:`MemoryError` і повертається ``-1`` ."

0 commit comments

Comments
 (0)