Skip to content

Commit 56ca6dd

Browse files
[po] auto sync
1 parent 12a91a1 commit 56ca6dd

15 files changed

Lines changed: 14718 additions & 14509 deletions

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "3.51%", "updated_at": "2026-01-23T13:47:40Z"}
1+
{"translation": "3.51%", "updated_at": "2026-01-23T14:28:31Z"}

c-api/conversion.mo

0 Bytes
Binary file not shown.

c-api/conversion.po

Lines changed: 46 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.14\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-11-25 14:15+0000\n"
15+
"POT-Creation-Date: 2026-01-23 14:20+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Gnevich <and.vareba81@gmail.com>, 2025\n"
1818
"Language-Team: Russian (https://app.transifex.com/python-doc/teams/5390/ru/)\n"
@@ -200,132 +200,150 @@ msgstr ""
200200
msgid "*flags* can be zero or more of the following values or-ed together:"
201201
msgstr ""
202202

203-
#: ../../c-api/conversion.rst:135
203+
#: ../../c-api/conversion.rst:137
204204
msgid ""
205205
"Always precede the returned string with a sign character, even if *val* is "
206206
"non-negative."
207207
msgstr ""
208208

209-
#: ../../c-api/conversion.rst:140
209+
#: ../../c-api/conversion.rst:142
210210
msgid "Ensure that the returned string will not look like an integer."
211211
msgstr ""
212212

213-
#: ../../c-api/conversion.rst:144
213+
#: ../../c-api/conversion.rst:146
214214
msgid ""
215215
"Apply \"alternate\" formatting rules. See the documentation for the "
216216
":c:func:`PyOS_snprintf` ``'#'`` specifier for details."
217217
msgstr ""
218218

219-
#: ../../c-api/conversion.rst:150
219+
#: ../../c-api/conversion.rst:152
220220
msgid "Negative zero is converted to positive zero."
221221
msgstr ""
222222

223-
#: ../../c-api/conversion.rst:154
223+
#: ../../c-api/conversion.rst:156
224224
msgid ""
225225
"If *ptype* is non-``NULL``, then the value it points to will be set to one "
226-
"of ``Py_DTST_FINITE``, ``Py_DTST_INFINITE``, or ``Py_DTST_NAN``, signifying "
227-
"that *val* is a finite number, an infinite number, or not a number, "
228-
"respectively."
226+
"of the following constants depending on the type of *val*:"
229227
msgstr ""
230228

231-
#: ../../c-api/conversion.rst:158
229+
#: ../../c-api/conversion.rst:163
230+
msgid "*\\*ptype*"
231+
msgstr ""
232+
233+
#: ../../c-api/conversion.rst:164
234+
msgid "type of *val*"
235+
msgstr ""
236+
237+
#: ../../c-api/conversion.rst:166
238+
msgid "finite number"
239+
msgstr ""
240+
241+
#: ../../c-api/conversion.rst:168
242+
msgid "infinite number"
243+
msgstr ""
244+
245+
#: ../../c-api/conversion.rst:170
246+
msgid "not a number"
247+
msgstr ""
248+
249+
#: ../../c-api/conversion.rst:172
232250
msgid ""
233251
"The return value is a pointer to *buffer* with the converted string or "
234252
"``NULL`` if the conversion failed. The caller is responsible for freeing the"
235253
" returned string by calling :c:func:`PyMem_Free`."
236254
msgstr ""
237255

238-
#: ../../c-api/conversion.rst:168
256+
#: ../../c-api/conversion.rst:182
239257
msgid ""
240258
"Case insensitive comparison of strings. These functions work almost "
241259
"identically to :c:func:`!strcmp` and :c:func:`!strncmp` (respectively), "
242260
"except that they ignore the case of ASCII characters."
243261
msgstr ""
244262

245-
#: ../../c-api/conversion.rst:172
263+
#: ../../c-api/conversion.rst:186
246264
msgid ""
247265
"Return ``0`` if the strings are equal, a negative value if *str1* sorts "
248266
"lexicographically before *str2*, or a positive value if it sorts after."
249267
msgstr ""
250268

251-
#: ../../c-api/conversion.rst:175
269+
#: ../../c-api/conversion.rst:189
252270
msgid ""
253271
"In the *str1* or *str2* arguments, a NUL byte marks the end of the string. "
254272
"For :c:func:`!PyOS_mystrnicmp`, the *size* argument gives the maximum size "
255273
"of the string, as if NUL was present at the index given by *size*."
256274
msgstr ""
257275

258-
#: ../../c-api/conversion.rst:179
276+
#: ../../c-api/conversion.rst:193
259277
msgid "These functions do not use the locale."
260278
msgstr ""
261279

262-
#: ../../c-api/conversion.rst:185
280+
#: ../../c-api/conversion.rst:199
263281
msgid "Case insensitive comparison of strings."
264282
msgstr ""
265283

266-
#: ../../c-api/conversion.rst:187
284+
#: ../../c-api/conversion.rst:201
267285
msgid ""
268286
"On Windows, these are aliases of :c:func:`!stricmp` and :c:func:`!strnicmp`,"
269287
" respectively."
270288
msgstr ""
271289

272-
#: ../../c-api/conversion.rst:190
290+
#: ../../c-api/conversion.rst:204
273291
msgid ""
274292
"On other platforms, they are aliases of :c:func:`PyOS_mystricmp` and "
275293
":c:func:`PyOS_mystrnicmp`, respectively."
276294
msgstr ""
277295

278-
#: ../../c-api/conversion.rst:195
296+
#: ../../c-api/conversion.rst:209
279297
msgid "Character classification and conversion"
280298
msgstr ""
281299

282-
#: ../../c-api/conversion.rst:197
300+
#: ../../c-api/conversion.rst:211
283301
msgid ""
284302
"The following macros provide locale-independent (unlike the C standard "
285303
"library ``ctype.h``) character classification and conversion. The argument "
286304
"must be a signed or unsigned :c:expr:`char`."
287305
msgstr ""
288306

289-
#: ../../c-api/conversion.rst:204
307+
#: ../../c-api/conversion.rst:218
290308
msgid "Return true if the character *c* is an alphanumeric character."
291309
msgstr ""
292310

293-
#: ../../c-api/conversion.rst:209
311+
#: ../../c-api/conversion.rst:223
294312
msgid ""
295313
"Return true if the character *c* is an alphabetic character (``a-z`` and "
296314
"``A-Z``)."
297315
msgstr ""
298316

299-
#: ../../c-api/conversion.rst:214
317+
#: ../../c-api/conversion.rst:228
300318
msgid "Return true if the character *c* is a decimal digit (``0-9``)."
301319
msgstr ""
302320

303-
#: ../../c-api/conversion.rst:219
321+
#: ../../c-api/conversion.rst:233
304322
msgid ""
305323
"Return true if the character *c* is a lowercase ASCII letter (``a-z``)."
306324
msgstr ""
307325

308-
#: ../../c-api/conversion.rst:224
326+
#: ../../c-api/conversion.rst:238
309327
msgid ""
310328
"Return true if the character *c* is an uppercase ASCII letter (``A-Z``)."
311329
msgstr ""
312330

313-
#: ../../c-api/conversion.rst:229
331+
#: ../../c-api/conversion.rst:243
314332
msgid ""
315333
"Return true if the character *c* is a whitespace character (space, tab, "
316334
"carriage return, newline, vertical tab, or form feed)."
317335
msgstr ""
318336

319-
#: ../../c-api/conversion.rst:235
337+
#: ../../c-api/conversion.rst:249
320338
msgid ""
321339
"Return true if the character *c* is a hexadecimal digit (``0-9``, ``a-f``, "
322340
"and ``A-F``)."
323341
msgstr ""
324342

325-
#: ../../c-api/conversion.rst:241
343+
#: ../../c-api/conversion.rst:255
326344
msgid "Return the lowercase equivalent of the character *c*."
327345
msgstr ""
328346

329-
#: ../../c-api/conversion.rst:246
347+
#: ../../c-api/conversion.rst:260
330348
msgid "Return the uppercase equivalent of the character *c*."
331349
msgstr ""

c-api/memory.mo

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)