Skip to content

Commit 1f88382

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 11c8985 commit 1f88382

40 files changed

+15677
-15437
lines changed

c-api/cell.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.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-11-05 14:15+0000\n"
14+
"POT-Creation-Date: 2025-11-25 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: Japanese (https://app.transifex.com/python-doc/teams/5390/"

c-api/conversion.po

Lines changed: 46 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-11 14:15+0000\n"
14+
"POT-Creation-Date: 2025-11-25 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: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -271,68 +271,96 @@ msgstr ""
271271
"呼び出し側は、返された文字列を :c:func:`PyMem_Free` を使って解放する責任があ"
272272
"ります。"
273273

274-
#: ../../c-api/conversion.rst:167
274+
#: ../../c-api/conversion.rst:168
275275
msgid ""
276-
"Case insensitive comparison of strings. The function works almost "
277-
"identically to :c:func:`!strcmp` except that it ignores the case."
276+
"Case insensitive comparison of strings. These functions work almost "
277+
"identically to :c:func:`!strcmp` and :c:func:`!strncmp` (respectively), "
278+
"except that they ignore the case of ASCII characters."
278279
msgstr ""
279280

280-
#: ../../c-api/conversion.rst:173
281+
#: ../../c-api/conversion.rst:172
281282
msgid ""
282-
"Case insensitive comparison of strings. The function works almost "
283-
"identically to :c:func:`!strncmp` except that it ignores the case."
283+
"Return ``0`` if the strings are equal, a negative value if *str1* sorts "
284+
"lexicographically before *str2*, or a positive value if it sorts after."
284285
msgstr ""
285286

286-
#: ../../c-api/conversion.rst:178
287+
#: ../../c-api/conversion.rst:175
288+
msgid ""
289+
"In the *str1* or *str2* arguments, a NUL byte marks the end of the string. "
290+
"For :c:func:`!PyOS_mystrnicmp`, the *size* argument gives the maximum size "
291+
"of the string, as if NUL was present at the index given by *size*."
292+
msgstr ""
293+
294+
#: ../../c-api/conversion.rst:179
295+
msgid "These functions do not use the locale."
296+
msgstr ""
297+
298+
#: ../../c-api/conversion.rst:185
299+
msgid "Case insensitive comparison of strings."
300+
msgstr ""
301+
302+
#: ../../c-api/conversion.rst:187
303+
msgid ""
304+
"On Windows, these are aliases of :c:func:`!stricmp` and :c:func:`!strnicmp`, "
305+
"respectively."
306+
msgstr ""
307+
308+
#: ../../c-api/conversion.rst:190
309+
msgid ""
310+
"On other platforms, they are aliases of :c:func:`PyOS_mystricmp` and :c:func:"
311+
"`PyOS_mystrnicmp`, respectively."
312+
msgstr ""
313+
314+
#: ../../c-api/conversion.rst:195
287315
msgid "Character classification and conversion"
288316
msgstr ""
289317

290-
#: ../../c-api/conversion.rst:180
318+
#: ../../c-api/conversion.rst:197
291319
msgid ""
292320
"The following macros provide locale-independent (unlike the C standard "
293321
"library ``ctype.h``) character classification and conversion. The argument "
294322
"must be a signed or unsigned :c:expr:`char`."
295323
msgstr ""
296324

297-
#: ../../c-api/conversion.rst:187
325+
#: ../../c-api/conversion.rst:204
298326
msgid "Return true if the character *c* is an alphanumeric character."
299327
msgstr ""
300328

301-
#: ../../c-api/conversion.rst:192
329+
#: ../../c-api/conversion.rst:209
302330
msgid ""
303331
"Return true if the character *c* is an alphabetic character (``a-z`` and ``A-"
304332
"Z``)."
305333
msgstr ""
306334

307-
#: ../../c-api/conversion.rst:197
335+
#: ../../c-api/conversion.rst:214
308336
msgid "Return true if the character *c* is a decimal digit (``0-9``)."
309337
msgstr ""
310338

311-
#: ../../c-api/conversion.rst:202
339+
#: ../../c-api/conversion.rst:219
312340
msgid "Return true if the character *c* is a lowercase ASCII letter (``a-z``)."
313341
msgstr ""
314342

315-
#: ../../c-api/conversion.rst:207
343+
#: ../../c-api/conversion.rst:224
316344
msgid ""
317345
"Return true if the character *c* is an uppercase ASCII letter (``A-Z``)."
318346
msgstr ""
319347

320-
#: ../../c-api/conversion.rst:212
348+
#: ../../c-api/conversion.rst:229
321349
msgid ""
322350
"Return true if the character *c* is a whitespace character (space, tab, "
323351
"carriage return, newline, vertical tab, or form feed)."
324352
msgstr ""
325353

326-
#: ../../c-api/conversion.rst:218
354+
#: ../../c-api/conversion.rst:235
327355
msgid ""
328356
"Return true if the character *c* is a hexadecimal digit (``0-9``, ``a-f``, "
329357
"and ``A-F``)."
330358
msgstr ""
331359

332-
#: ../../c-api/conversion.rst:224
360+
#: ../../c-api/conversion.rst:241
333361
msgid "Return the lowercase equivalent of the character *c*."
334362
msgstr ""
335363

336-
#: ../../c-api/conversion.rst:229
364+
#: ../../c-api/conversion.rst:246
337365
msgid "Return the uppercase equivalent of the character *c*."
338366
msgstr ""

0 commit comments

Comments
 (0)