@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.14\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2026-01-03 14:14 +0000\n "
14+ "POT-Creation-Date : 2026-01-23 14:20 +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/ "
@@ -229,38 +229,53 @@ msgstr ""
229229msgid "*flags* can be zero or more of the following values or-ed together:"
230230msgstr ""
231231
232- #: ../../c-api/conversion.rst:135
232+ #: ../../c-api/conversion.rst:137
233233msgid ""
234234"Always precede the returned string with a sign character, even if *val* is "
235235"non-negative."
236236msgstr ""
237237
238- #: ../../c-api/conversion.rst:140
238+ #: ../../c-api/conversion.rst:142
239239msgid "Ensure that the returned string will not look like an integer."
240240msgstr ""
241241
242- #: ../../c-api/conversion.rst:144
242+ #: ../../c-api/conversion.rst:146
243243msgid ""
244244"Apply \" alternate\" formatting rules. See the documentation for the :c:func:"
245245"`PyOS_snprintf` ``'#'`` specifier for details."
246246msgstr ""
247247
248- #: ../../c-api/conversion.rst:150
248+ #: ../../c-api/conversion.rst:152
249249msgid "Negative zero is converted to positive zero."
250250msgstr ""
251251
252- #: ../../c-api/conversion.rst:154
252+ #: ../../c-api/conversion.rst:156
253253msgid ""
254254"If *ptype* is non-``NULL``, then the value it points to will be set to one "
255- "of ``Py_DTST_FINITE``, ``Py_DTST_INFINITE``, or ``Py_DTST_NAN``, signifying "
256- "that *val* is a finite number, an infinite number, or not a number, "
257- "respectively."
255+ "of the following constants depending on the type of *val*:"
256+ msgstr ""
257+
258+ #: ../../c-api/conversion.rst:163
259+ msgid "*\\ *ptype*"
260+ msgstr ""
261+
262+ #: ../../c-api/conversion.rst:164
263+ msgid "type of *val*"
264+ msgstr ""
265+
266+ #: ../../c-api/conversion.rst:166
267+ msgid "finite number"
268+ msgstr ""
269+
270+ #: ../../c-api/conversion.rst:168
271+ msgid "infinite number"
258272msgstr ""
259- "*ptype* が ``NULL`` で無い場合、*val* が有限数、無限数、NaNのどれかに合わせ"
260- "て、``Py_DTST_FINITE``, ``Py_DTST_INFINITE``, ``Py_DTST_NAN`` のいずれかに設"
261- "定されます。"
262273
263- #: ../../c-api/conversion.rst:158
274+ #: ../../c-api/conversion.rst:170
275+ msgid "not a number"
276+ msgstr ""
277+
278+ #: ../../c-api/conversion.rst:172
264279msgid ""
265280"The return value is a pointer to *buffer* with the converted string or "
266281"``NULL`` if the conversion failed. The caller is responsible for freeing the "
@@ -271,96 +286,96 @@ msgstr ""
271286"呼び出し側は、返された文字列を :c:func:`PyMem_Free` を使って解放する責任があ"
272287"ります。"
273288
274- #: ../../c-api/conversion.rst:168
289+ #: ../../c-api/conversion.rst:182
275290msgid ""
276291"Case insensitive comparison of strings. These functions work almost "
277292"identically to :c:func:`!strcmp` and :c:func:`!strncmp` (respectively), "
278293"except that they ignore the case of ASCII characters."
279294msgstr ""
280295
281- #: ../../c-api/conversion.rst:172
296+ #: ../../c-api/conversion.rst:186
282297msgid ""
283298"Return ``0`` if the strings are equal, a negative value if *str1* sorts "
284299"lexicographically before *str2*, or a positive value if it sorts after."
285300msgstr ""
286301
287- #: ../../c-api/conversion.rst:175
302+ #: ../../c-api/conversion.rst:189
288303msgid ""
289304"In the *str1* or *str2* arguments, a NUL byte marks the end of the string. "
290305"For :c:func:`!PyOS_mystrnicmp`, the *size* argument gives the maximum size "
291306"of the string, as if NUL was present at the index given by *size*."
292307msgstr ""
293308
294- #: ../../c-api/conversion.rst:179
309+ #: ../../c-api/conversion.rst:193
295310msgid "These functions do not use the locale."
296311msgstr ""
297312
298- #: ../../c-api/conversion.rst:185
313+ #: ../../c-api/conversion.rst:199
299314msgid "Case insensitive comparison of strings."
300315msgstr ""
301316
302- #: ../../c-api/conversion.rst:187
317+ #: ../../c-api/conversion.rst:201
303318msgid ""
304319"On Windows, these are aliases of :c:func:`!stricmp` and :c:func:`!strnicmp`, "
305320"respectively."
306321msgstr ""
307322
308- #: ../../c-api/conversion.rst:190
323+ #: ../../c-api/conversion.rst:204
309324msgid ""
310325"On other platforms, they are aliases of :c:func:`PyOS_mystricmp` and :c:func:"
311326"`PyOS_mystrnicmp`, respectively."
312327msgstr ""
313328
314- #: ../../c-api/conversion.rst:195
329+ #: ../../c-api/conversion.rst:209
315330msgid "Character classification and conversion"
316331msgstr ""
317332
318- #: ../../c-api/conversion.rst:197
333+ #: ../../c-api/conversion.rst:211
319334msgid ""
320335"The following macros provide locale-independent (unlike the C standard "
321336"library ``ctype.h``) character classification and conversion. The argument "
322337"must be a signed or unsigned :c:expr:`char`."
323338msgstr ""
324339
325- #: ../../c-api/conversion.rst:204
340+ #: ../../c-api/conversion.rst:218
326341msgid "Return true if the character *c* is an alphanumeric character."
327342msgstr ""
328343
329- #: ../../c-api/conversion.rst:209
344+ #: ../../c-api/conversion.rst:223
330345msgid ""
331346"Return true if the character *c* is an alphabetic character (``a-z`` and ``A-"
332347"Z``)."
333348msgstr ""
334349
335- #: ../../c-api/conversion.rst:214
350+ #: ../../c-api/conversion.rst:228
336351msgid "Return true if the character *c* is a decimal digit (``0-9``)."
337352msgstr ""
338353
339- #: ../../c-api/conversion.rst:219
354+ #: ../../c-api/conversion.rst:233
340355msgid "Return true if the character *c* is a lowercase ASCII letter (``a-z``)."
341356msgstr ""
342357
343- #: ../../c-api/conversion.rst:224
358+ #: ../../c-api/conversion.rst:238
344359msgid ""
345360"Return true if the character *c* is an uppercase ASCII letter (``A-Z``)."
346361msgstr ""
347362
348- #: ../../c-api/conversion.rst:229
363+ #: ../../c-api/conversion.rst:243
349364msgid ""
350365"Return true if the character *c* is a whitespace character (space, tab, "
351366"carriage return, newline, vertical tab, or form feed)."
352367msgstr ""
353368
354- #: ../../c-api/conversion.rst:235
369+ #: ../../c-api/conversion.rst:249
355370msgid ""
356371"Return true if the character *c* is a hexadecimal digit (``0-9``, ``a-f``, "
357372"and ``A-F``)."
358373msgstr ""
359374
360- #: ../../c-api/conversion.rst:241
375+ #: ../../c-api/conversion.rst:255
361376msgid "Return the lowercase equivalent of the character *c*."
362377msgstr ""
363378
364- #: ../../c-api/conversion.rst:246
379+ #: ../../c-api/conversion.rst:260
365380msgid "Return the uppercase equivalent of the character *c*."
366381msgstr ""
0 commit comments