@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
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
275275msgid ""
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."
278279msgstr ""
279280
280- #: ../../c-api/conversion.rst:173
281+ #: ../../c-api/conversion.rst:172
281282msgid ""
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 ."
284285msgstr ""
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
287315msgid "Character classification and conversion"
288316msgstr ""
289317
290- #: ../../c-api/conversion.rst:180
318+ #: ../../c-api/conversion.rst:197
291319msgid ""
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`."
295323msgstr ""
296324
297- #: ../../c-api/conversion.rst:187
325+ #: ../../c-api/conversion.rst:204
298326msgid "Return true if the character *c* is an alphanumeric character."
299327msgstr ""
300328
301- #: ../../c-api/conversion.rst:192
329+ #: ../../c-api/conversion.rst:209
302330msgid ""
303331"Return true if the character *c* is an alphabetic character (``a-z`` and ``A-"
304332"Z``)."
305333msgstr ""
306334
307- #: ../../c-api/conversion.rst:197
335+ #: ../../c-api/conversion.rst:214
308336msgid "Return true if the character *c* is a decimal digit (``0-9``)."
309337msgstr ""
310338
311- #: ../../c-api/conversion.rst:202
339+ #: ../../c-api/conversion.rst:219
312340msgid "Return true if the character *c* is a lowercase ASCII letter (``a-z``)."
313341msgstr ""
314342
315- #: ../../c-api/conversion.rst:207
343+ #: ../../c-api/conversion.rst:224
316344msgid ""
317345"Return true if the character *c* is an uppercase ASCII letter (``A-Z``)."
318346msgstr ""
319347
320- #: ../../c-api/conversion.rst:212
348+ #: ../../c-api/conversion.rst:229
321349msgid ""
322350"Return true if the character *c* is a whitespace character (space, tab, "
323351"carriage return, newline, vertical tab, or form feed)."
324352msgstr ""
325353
326- #: ../../c-api/conversion.rst:218
354+ #: ../../c-api/conversion.rst:235
327355msgid ""
328356"Return true if the character *c* is a hexadecimal digit (``0-9``, ``a-f``, "
329357"and ``A-F``)."
330358msgstr ""
331359
332- #: ../../c-api/conversion.rst:224
360+ #: ../../c-api/conversion.rst:241
333361msgid "Return the lowercase equivalent of the character *c*."
334362msgstr ""
335363
336- #: ../../c-api/conversion.rst:229
364+ #: ../../c-api/conversion.rst:246
337365msgid "Return the uppercase equivalent of the character *c*."
338366msgstr ""