@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.14\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2025-11-11 14:15+0000\n "
15+ "POT-Creation-Date : 2025-11-25 14:15+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 "
@@ -235,69 +235,97 @@ msgid ""
235235" returned string by calling :c:func:`PyMem_Free`."
236236msgstr ""
237237
238- #: ../../c-api/conversion.rst:167
238+ #: ../../c-api/conversion.rst:168
239239msgid ""
240- "Case insensitive comparison of strings. The function works almost "
241- "identically to :c:func:`!strcmp` except that it ignores the case."
240+ "Case insensitive comparison of strings. These functions work almost "
241+ "identically to :c:func:`!strcmp` and :c:func:`!strncmp` (respectively), "
242+ "except that they ignore the case of ASCII characters."
242243msgstr ""
243244
244- #: ../../c-api/conversion.rst:173
245+ #: ../../c-api/conversion.rst:172
245246msgid ""
246- "Case insensitive comparison of strings. The function works almost "
247- "identically to :c:func:`!strncmp` except that it ignores the case ."
247+ "Return ``0`` if the strings are equal, a negative value if *str1* sorts "
248+ "lexicographically before *str2*, or a positive value if it sorts after ."
248249msgstr ""
249250
250- #: ../../c-api/conversion.rst:178
251+ #: ../../c-api/conversion.rst:175
252+ msgid ""
253+ "In the *str1* or *str2* arguments, a NUL byte marks the end of the string. "
254+ "For :c:func:`!PyOS_mystrnicmp`, the *size* argument gives the maximum size "
255+ "of the string, as if NUL was present at the index given by *size*."
256+ msgstr ""
257+
258+ #: ../../c-api/conversion.rst:179
259+ msgid "These functions do not use the locale."
260+ msgstr ""
261+
262+ #: ../../c-api/conversion.rst:185
263+ msgid "Case insensitive comparison of strings."
264+ msgstr ""
265+
266+ #: ../../c-api/conversion.rst:187
267+ msgid ""
268+ "On Windows, these are aliases of :c:func:`!stricmp` and :c:func:`!strnicmp`,"
269+ " respectively."
270+ msgstr ""
271+
272+ #: ../../c-api/conversion.rst:190
273+ msgid ""
274+ "On other platforms, they are aliases of :c:func:`PyOS_mystricmp` and "
275+ ":c:func:`PyOS_mystrnicmp`, respectively."
276+ msgstr ""
277+
278+ #: ../../c-api/conversion.rst:195
251279msgid "Character classification and conversion"
252280msgstr ""
253281
254- #: ../../c-api/conversion.rst:180
282+ #: ../../c-api/conversion.rst:197
255283msgid ""
256284"The following macros provide locale-independent (unlike the C standard "
257285"library ``ctype.h``) character classification and conversion. The argument "
258286"must be a signed or unsigned :c:expr:`char`."
259287msgstr ""
260288
261- #: ../../c-api/conversion.rst:187
289+ #: ../../c-api/conversion.rst:204
262290msgid "Return true if the character *c* is an alphanumeric character."
263291msgstr ""
264292
265- #: ../../c-api/conversion.rst:192
293+ #: ../../c-api/conversion.rst:209
266294msgid ""
267295"Return true if the character *c* is an alphabetic character (``a-z`` and "
268296"``A-Z``)."
269297msgstr ""
270298
271- #: ../../c-api/conversion.rst:197
299+ #: ../../c-api/conversion.rst:214
272300msgid "Return true if the character *c* is a decimal digit (``0-9``)."
273301msgstr ""
274302
275- #: ../../c-api/conversion.rst:202
303+ #: ../../c-api/conversion.rst:219
276304msgid ""
277305"Return true if the character *c* is a lowercase ASCII letter (``a-z``)."
278306msgstr ""
279307
280- #: ../../c-api/conversion.rst:207
308+ #: ../../c-api/conversion.rst:224
281309msgid ""
282310"Return true if the character *c* is an uppercase ASCII letter (``A-Z``)."
283311msgstr ""
284312
285- #: ../../c-api/conversion.rst:212
313+ #: ../../c-api/conversion.rst:229
286314msgid ""
287315"Return true if the character *c* is a whitespace character (space, tab, "
288316"carriage return, newline, vertical tab, or form feed)."
289317msgstr ""
290318
291- #: ../../c-api/conversion.rst:218
319+ #: ../../c-api/conversion.rst:235
292320msgid ""
293321"Return true if the character *c* is a hexadecimal digit (``0-9``, ``a-f``, "
294322"and ``A-F``)."
295323msgstr ""
296324
297- #: ../../c-api/conversion.rst:224
325+ #: ../../c-api/conversion.rst:241
298326msgid "Return the lowercase equivalent of the character *c*."
299327msgstr ""
300328
301- #: ../../c-api/conversion.rst:229
329+ #: ../../c-api/conversion.rst:246
302330msgid "Return the uppercase equivalent of the character *c*."
303331msgstr ""
0 commit comments