Skip to content

Commit 683eb14

Browse files
[po] auto sync
1 parent e186f46 commit 683eb14

29 files changed

Lines changed: 2694 additions & 2549 deletions

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "0.15%", "updated_at": "2025-11-09T23:19:25Z"}
1+
{"translation": "0.15%", "updated_at": "2025-11-11T14:22:55Z"}

c-api/allocation.mo

0 Bytes
Binary file not shown.

c-api/allocation.po

Lines changed: 47 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-05-30 14:22+0000\n"
14+
"POT-Creation-Date: 2025-11-11 14:15+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Russian (https://app.transifex.com/python-doc/teams/5390/ru/)\n"
@@ -121,6 +121,8 @@ msgid "PyObject *foo = PyObject_CallNoArgs((PyObject *)&PyFoo_Type);"
121121
msgstr ""
122122

123123
#: ../../c-api/allocation.rst:87 ../../c-api/allocation.rst:137
124+
#: ../../c-api/allocation.rst:182 ../../c-api/allocation.rst:184
125+
#: ../../c-api/allocation.rst:186
124126
msgid ":c:func:`PyObject_Free`"
125127
msgstr ""
126128

@@ -182,20 +184,58 @@ msgid ":c:macro:`PyObject_GC_NewVar`"
182184
msgstr ""
183185

184186
#: ../../c-api/allocation.rst:145
185-
msgid "Same as :c:func:`PyObject_Free`."
186-
msgstr ""
187-
188-
#: ../../c-api/allocation.rst:149
189187
msgid ""
190188
"Object which is visible in Python as ``None``. This should only be accessed"
191189
" using the :c:macro:`Py_None` macro, which evaluates to a pointer to this "
192190
"object."
193191
msgstr ""
194192

195-
#: ../../c-api/allocation.rst:156
193+
#: ../../c-api/allocation.rst:152
196194
msgid ":ref:`moduleobjects`"
197195
msgstr ""
198196

199-
#: ../../c-api/allocation.rst:157
197+
#: ../../c-api/allocation.rst:153
200198
msgid "To allocate and create extension modules."
201199
msgstr ""
200+
201+
#: ../../c-api/allocation.rst:157
202+
msgid "Deprecated aliases"
203+
msgstr ""
204+
205+
#: ../../c-api/allocation.rst:159
206+
msgid ""
207+
"These are :term:`soft deprecated` aliases to existing functions and macros. "
208+
"They exist solely for backwards compatibility."
209+
msgstr ""
210+
211+
#: ../../c-api/allocation.rst:167
212+
msgid "Deprecated alias"
213+
msgstr ""
214+
215+
#: ../../c-api/allocation.rst:168
216+
msgid "Function"
217+
msgstr ""
218+
219+
#: ../../c-api/allocation.rst:170
220+
msgid ":c:macro:`PyObject_New`"
221+
msgstr ""
222+
223+
#: ../../c-api/allocation.rst:172
224+
msgid ":c:macro:`PyObject_NewVar`"
225+
msgstr ""
226+
227+
#: ../../c-api/allocation.rst:174
228+
msgid ":c:func:`PyObject_Init`"
229+
msgstr ""
230+
231+
#: ../../c-api/allocation.rst:176
232+
msgid ":c:func:`PyObject_InitVar`"
233+
msgstr ""
234+
235+
#: ../../c-api/allocation.rst:178
236+
msgid ":c:func:`PyObject_Malloc`"
237+
msgstr ""
238+
239+
#: ../../c-api/allocation.rst:180
240+
msgid ":c:func:`PyObject_Realloc`"
241+
msgstr ""

c-api/conversion.mo

0 Bytes
Binary file not shown.

c-api/conversion.po

Lines changed: 73 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-11-03 14:20+0000\n"
14+
"POT-Creation-Date: 2025-11-11 14:15+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Russian (https://app.transifex.com/python-doc/teams/5390/ru/)\n"
@@ -196,52 +196,107 @@ msgid ""
196196
msgstr ""
197197

198198
#: ../../c-api/conversion.rst:131
199-
msgid ""
200-
"*flags* can be zero or more of the values ``Py_DTSF_SIGN``, "
201-
"``Py_DTSF_ADD_DOT_0``, or ``Py_DTSF_ALT``, or-ed together:"
199+
msgid "*flags* can be zero or more of the following values or-ed together:"
202200
msgstr ""
203201

204-
#: ../../c-api/conversion.rst:134
202+
#: ../../c-api/conversion.rst:135
205203
msgid ""
206-
"``Py_DTSF_SIGN`` means to always precede the returned string with a sign "
207-
"character, even if *val* is non-negative."
204+
"Always precede the returned string with a sign character, even if *val* is "
205+
"non-negative."
208206
msgstr ""
209207

210-
#: ../../c-api/conversion.rst:137
211-
msgid ""
212-
"``Py_DTSF_ADD_DOT_0`` means to ensure that the returned string will not look"
213-
" like an integer."
208+
#: ../../c-api/conversion.rst:140
209+
msgid "Ensure that the returned string will not look like an integer."
214210
msgstr ""
215211

216-
#: ../../c-api/conversion.rst:140
212+
#: ../../c-api/conversion.rst:144
217213
msgid ""
218-
"``Py_DTSF_ALT`` means to apply \"alternate\" formatting rules. See the "
219-
"documentation for the :c:func:`PyOS_snprintf` ``'#'`` specifier for details."
214+
"Apply \"alternate\" formatting rules. See the documentation for the "
215+
":c:func:`PyOS_snprintf` ``'#'`` specifier for details."
220216
msgstr ""
221217

222-
#: ../../c-api/conversion.rst:144
218+
#: ../../c-api/conversion.rst:150
219+
msgid "Negative zero is converted to positive zero."
220+
msgstr ""
221+
222+
#: ../../c-api/conversion.rst:154
223223
msgid ""
224224
"If *ptype* is non-``NULL``, then the value it points to will be set to one "
225225
"of ``Py_DTST_FINITE``, ``Py_DTST_INFINITE``, or ``Py_DTST_NAN``, signifying "
226226
"that *val* is a finite number, an infinite number, or not a number, "
227227
"respectively."
228228
msgstr ""
229229

230-
#: ../../c-api/conversion.rst:148
230+
#: ../../c-api/conversion.rst:158
231231
msgid ""
232232
"The return value is a pointer to *buffer* with the converted string or "
233233
"``NULL`` if the conversion failed. The caller is responsible for freeing the"
234234
" returned string by calling :c:func:`PyMem_Free`."
235235
msgstr ""
236236

237-
#: ../../c-api/conversion.rst:157
237+
#: ../../c-api/conversion.rst:167
238238
msgid ""
239239
"Case insensitive comparison of strings. The function works almost "
240240
"identically to :c:func:`!strcmp` except that it ignores the case."
241241
msgstr ""
242242

243-
#: ../../c-api/conversion.rst:163
243+
#: ../../c-api/conversion.rst:173
244244
msgid ""
245245
"Case insensitive comparison of strings. The function works almost "
246246
"identically to :c:func:`!strncmp` except that it ignores the case."
247247
msgstr ""
248+
249+
#: ../../c-api/conversion.rst:178
250+
msgid "Character classification and conversion"
251+
msgstr ""
252+
253+
#: ../../c-api/conversion.rst:180
254+
msgid ""
255+
"The following macros provide locale-independent (unlike the C standard "
256+
"library ``ctype.h``) character classification and conversion. The argument "
257+
"must be a signed or unsigned :c:expr:`char`."
258+
msgstr ""
259+
260+
#: ../../c-api/conversion.rst:187
261+
msgid "Return true if the character *c* is an alphanumeric character."
262+
msgstr ""
263+
264+
#: ../../c-api/conversion.rst:192
265+
msgid ""
266+
"Return true if the character *c* is an alphabetic character (``a-z`` and "
267+
"``A-Z``)."
268+
msgstr ""
269+
270+
#: ../../c-api/conversion.rst:197
271+
msgid "Return true if the character *c* is a decimal digit (``0-9``)."
272+
msgstr ""
273+
274+
#: ../../c-api/conversion.rst:202
275+
msgid ""
276+
"Return true if the character *c* is a lowercase ASCII letter (``a-z``)."
277+
msgstr ""
278+
279+
#: ../../c-api/conversion.rst:207
280+
msgid ""
281+
"Return true if the character *c* is an uppercase ASCII letter (``A-Z``)."
282+
msgstr ""
283+
284+
#: ../../c-api/conversion.rst:212
285+
msgid ""
286+
"Return true if the character *c* is a whitespace character (space, tab, "
287+
"carriage return, newline, vertical tab, or form feed)."
288+
msgstr ""
289+
290+
#: ../../c-api/conversion.rst:218
291+
msgid ""
292+
"Return true if the character *c* is a hexadecimal digit (``0-9``, ``a-f``, "
293+
"and ``A-F``)."
294+
msgstr ""
295+
296+
#: ../../c-api/conversion.rst:224
297+
msgid "Return the lowercase equivalent of the character *c*."
298+
msgstr ""
299+
300+
#: ../../c-api/conversion.rst:229
301+
msgid "Return the uppercase equivalent of the character *c*."
302+
msgstr ""

c-api/typeobj.mo

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)