Skip to content

Commit 4502284

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 59a0e95 commit 4502284

19 files changed

+15246
-15343
lines changed

c-api/arg.po

Lines changed: 1 addition & 1 deletion
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: 2026-01-03 14:14+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: W. H. Wang <mattwang44@gmail.com>, 2025\n"
1818
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

c-api/conversion.po

Lines changed: 46 additions & 31 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: 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 ""
229229
msgid "*flags* can be zero or more of the following values or-ed together:"
230230
msgstr ""
231231

232-
#: ../../c-api/conversion.rst:135
232+
#: ../../c-api/conversion.rst:137
233233
msgid ""
234234
"Always precede the returned string with a sign character, even if *val* is "
235235
"non-negative."
236236
msgstr ""
237237

238-
#: ../../c-api/conversion.rst:140
238+
#: ../../c-api/conversion.rst:142
239239
msgid "Ensure that the returned string will not look like an integer."
240240
msgstr ""
241241

242-
#: ../../c-api/conversion.rst:144
242+
#: ../../c-api/conversion.rst:146
243243
msgid ""
244244
"Apply \"alternate\" formatting rules. See the documentation for the :c:func:"
245245
"`PyOS_snprintf` ``'#'`` specifier for details."
246246
msgstr ""
247247

248-
#: ../../c-api/conversion.rst:150
248+
#: ../../c-api/conversion.rst:152
249249
msgid "Negative zero is converted to positive zero."
250250
msgstr ""
251251

252-
#: ../../c-api/conversion.rst:154
252+
#: ../../c-api/conversion.rst:156
253253
msgid ""
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"
258272
msgstr ""
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
264279
msgid ""
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
275290
msgid ""
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."
279294
msgstr ""
280295

281-
#: ../../c-api/conversion.rst:172
296+
#: ../../c-api/conversion.rst:186
282297
msgid ""
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."
285300
msgstr ""
286301

287-
#: ../../c-api/conversion.rst:175
302+
#: ../../c-api/conversion.rst:189
288303
msgid ""
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*."
292307
msgstr ""
293308

294-
#: ../../c-api/conversion.rst:179
309+
#: ../../c-api/conversion.rst:193
295310
msgid "These functions do not use the locale."
296311
msgstr ""
297312

298-
#: ../../c-api/conversion.rst:185
313+
#: ../../c-api/conversion.rst:199
299314
msgid "Case insensitive comparison of strings."
300315
msgstr ""
301316

302-
#: ../../c-api/conversion.rst:187
317+
#: ../../c-api/conversion.rst:201
303318
msgid ""
304319
"On Windows, these are aliases of :c:func:`!stricmp` and :c:func:`!strnicmp`, "
305320
"respectively."
306321
msgstr ""
307322

308-
#: ../../c-api/conversion.rst:190
323+
#: ../../c-api/conversion.rst:204
309324
msgid ""
310325
"On other platforms, they are aliases of :c:func:`PyOS_mystricmp` and :c:func:"
311326
"`PyOS_mystrnicmp`, respectively."
312327
msgstr ""
313328

314-
#: ../../c-api/conversion.rst:195
329+
#: ../../c-api/conversion.rst:209
315330
msgid "Character classification and conversion"
316331
msgstr ""
317332

318-
#: ../../c-api/conversion.rst:197
333+
#: ../../c-api/conversion.rst:211
319334
msgid ""
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`."
323338
msgstr ""
324339

325-
#: ../../c-api/conversion.rst:204
340+
#: ../../c-api/conversion.rst:218
326341
msgid "Return true if the character *c* is an alphanumeric character."
327342
msgstr ""
328343

329-
#: ../../c-api/conversion.rst:209
344+
#: ../../c-api/conversion.rst:223
330345
msgid ""
331346
"Return true if the character *c* is an alphabetic character (``a-z`` and ``A-"
332347
"Z``)."
333348
msgstr ""
334349

335-
#: ../../c-api/conversion.rst:214
350+
#: ../../c-api/conversion.rst:228
336351
msgid "Return true if the character *c* is a decimal digit (``0-9``)."
337352
msgstr ""
338353

339-
#: ../../c-api/conversion.rst:219
354+
#: ../../c-api/conversion.rst:233
340355
msgid "Return true if the character *c* is a lowercase ASCII letter (``a-z``)."
341356
msgstr ""
342357

343-
#: ../../c-api/conversion.rst:224
358+
#: ../../c-api/conversion.rst:238
344359
msgid ""
345360
"Return true if the character *c* is an uppercase ASCII letter (``A-Z``)."
346361
msgstr ""
347362

348-
#: ../../c-api/conversion.rst:229
363+
#: ../../c-api/conversion.rst:243
349364
msgid ""
350365
"Return true if the character *c* is a whitespace character (space, tab, "
351366
"carriage return, newline, vertical tab, or form feed)."
352367
msgstr ""
353368

354-
#: ../../c-api/conversion.rst:235
369+
#: ../../c-api/conversion.rst:249
355370
msgid ""
356371
"Return true if the character *c* is a hexadecimal digit (``0-9``, ``a-f``, "
357372
"and ``A-F``)."
358373
msgstr ""
359374

360-
#: ../../c-api/conversion.rst:241
375+
#: ../../c-api/conversion.rst:255
361376
msgid "Return the lowercase equivalent of the character *c*."
362377
msgstr ""
363378

364-
#: ../../c-api/conversion.rst:246
379+
#: ../../c-api/conversion.rst:260
365380
msgid "Return the uppercase equivalent of the character *c*."
366381
msgstr ""

0 commit comments

Comments
 (0)