Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit baf81ba

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 8b69675 commit baf81ba

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+18356
-18637
lines changed

c-api/code.po

Lines changed: 127 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
# Translators:
77
# 秘湯 <[email protected]>, 2024
88
# 石井明久, 2024
9-
# tomo, 2024
109
# Taichi Haradaguchi, 2024
10+
# tomo, 2025
1111
#
1212
#, fuzzy
1313
msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.14\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2025-07-04 14:20+0000\n"
17+
"POT-Creation-Date: 2025-07-11 14:21+0000\n"
1818
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
19-
"Last-Translator: Taichi Haradaguchi, 2024\n"
19+
"Last-Translator: tomo, 2025\n"
2020
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
2121
"ja/)\n"
2222
"MIME-Version: 1.0\n"
@@ -263,85 +263,191 @@ msgid ""
263263
"it before returning."
264264
msgstr ""
265265

266-
#: ../../c-api/code.rst:215
266+
#: ../../c-api/code.rst:217
267+
msgid "Code Object Flags"
268+
msgstr ""
269+
270+
#: ../../c-api/code.rst:219
271+
msgid ""
272+
"Code objects contain a bit-field of flags, which can be retrieved as the :"
273+
"attr:`~codeobject.co_flags` Python attribute (for example using :c:func:"
274+
"`PyObject_GetAttrString`), and set using a *flags* argument to :c:func:"
275+
"`PyUnstable_Code_New` and similar functions."
276+
msgstr ""
277+
278+
#: ../../c-api/code.rst:224
279+
msgid ""
280+
"Flags whose names start with ``CO_FUTURE_`` correspond to features normally "
281+
"selectable by :ref:`future statements <future>`. These flags can be used in :"
282+
"c:member:`PyCompilerFlags.cf_flags`. Note that many ``CO_FUTURE_`` flags are "
283+
"mandatory in current versions of Python, and setting them has no effect."
284+
msgstr ""
285+
286+
#: ../../c-api/code.rst:230
287+
msgid ""
288+
"The following flags are available. For their meaning, see the linked "
289+
"documentation of their Python equivalents."
290+
msgstr ""
291+
292+
#: ../../c-api/code.rst:238
293+
msgid "Flag"
294+
msgstr "Flag"
295+
296+
#: ../../c-api/code.rst:239
297+
msgid "Meaning"
298+
msgstr "意味"
299+
300+
#: ../../c-api/code.rst:241
301+
msgid ":py:data:`inspect.CO_OPTIMIZED`"
302+
msgstr ""
303+
304+
#: ../../c-api/code.rst:243
305+
msgid ":py:data:`inspect.CO_NEWLOCALS`"
306+
msgstr ""
307+
308+
#: ../../c-api/code.rst:245
309+
msgid ":py:data:`inspect.CO_VARARGS`"
310+
msgstr ""
311+
312+
#: ../../c-api/code.rst:247
313+
msgid ":py:data:`inspect.CO_VARKEYWORDS`"
314+
msgstr ""
315+
316+
#: ../../c-api/code.rst:249
317+
msgid ":py:data:`inspect.CO_NESTED`"
318+
msgstr ""
319+
320+
#: ../../c-api/code.rst:251
321+
msgid ":py:data:`inspect.CO_GENERATOR`"
322+
msgstr ""
323+
324+
#: ../../c-api/code.rst:253
325+
msgid ":py:data:`inspect.CO_COROUTINE`"
326+
msgstr ""
327+
328+
#: ../../c-api/code.rst:255
329+
msgid ":py:data:`inspect.CO_ITERABLE_COROUTINE`"
330+
msgstr ""
331+
332+
#: ../../c-api/code.rst:257
333+
msgid ":py:data:`inspect.CO_ASYNC_GENERATOR`"
334+
msgstr ""
335+
336+
#: ../../c-api/code.rst:259
337+
msgid ":py:data:`inspect.CO_HAS_DOCSTRING`"
338+
msgstr ""
339+
340+
#: ../../c-api/code.rst:261
341+
msgid ":py:data:`inspect.CO_METHOD`"
342+
msgstr ""
343+
344+
#: ../../c-api/code.rst:264
345+
msgid "no effect (:py:data:`__future__.division`)"
346+
msgstr ""
347+
348+
#: ../../c-api/code.rst:266
349+
msgid "no effect (:py:data:`__future__.absolute_import`)"
350+
msgstr ""
351+
352+
#: ../../c-api/code.rst:268
353+
msgid "no effect (:py:data:`__future__.with_statement`)"
354+
msgstr ""
355+
356+
#: ../../c-api/code.rst:270
357+
msgid "no effect (:py:data:`__future__.print_function`)"
358+
msgstr ""
359+
360+
#: ../../c-api/code.rst:272
361+
msgid "no effect (:py:data:`__future__.unicode_literals`)"
362+
msgstr ""
363+
364+
#: ../../c-api/code.rst:274
365+
msgid "no effect (:py:data:`__future__.generator_stop`)"
366+
msgstr ""
367+
368+
#: ../../c-api/code.rst:276
369+
msgid ":py:data:`__future__.annotations`"
370+
msgstr ""
371+
372+
#: ../../c-api/code.rst:280
267373
msgid "Extra information"
268374
msgstr ""
269375

270-
#: ../../c-api/code.rst:217
376+
#: ../../c-api/code.rst:282
271377
msgid ""
272378
"To support low-level extensions to frame evaluation, such as external just-"
273379
"in-time compilers, it is possible to attach arbitrary extra data to code "
274380
"objects."
275381
msgstr ""
276382

277-
#: ../../c-api/code.rst:221
383+
#: ../../c-api/code.rst:286
278384
msgid ""
279385
"These functions are part of the unstable C API tier: this functionality is a "
280386
"CPython implementation detail, and the API may change without deprecation "
281387
"warnings."
282388
msgstr ""
283389

284-
#: ../../c-api/code.rst:227
390+
#: ../../c-api/code.rst:292
285391
msgid "Return a new an opaque index value used to adding data to code objects."
286392
msgstr ""
287393

288-
#: ../../c-api/code.rst:229
394+
#: ../../c-api/code.rst:294
289395
msgid ""
290396
"You generally call this function once (per interpreter) and use the result "
291397
"with ``PyCode_GetExtra`` and ``PyCode_SetExtra`` to manipulate data on "
292398
"individual code objects."
293399
msgstr ""
294400

295-
#: ../../c-api/code.rst:233
401+
#: ../../c-api/code.rst:298
296402
msgid ""
297403
"If *free* is not ``NULL``: when a code object is deallocated, *free* will be "
298404
"called on non-``NULL`` data stored under the new index. Use :c:func:"
299405
"`Py_DecRef` when storing :c:type:`PyObject`."
300406
msgstr ""
301407

302-
#: ../../c-api/code.rst:239
408+
#: ../../c-api/code.rst:304
303409
msgid "as ``_PyEval_RequestCodeExtraIndex``"
304410
msgstr ""
305411

306-
#: ../../c-api/code.rst:243
412+
#: ../../c-api/code.rst:308
307413
msgid ""
308414
"Renamed to ``PyUnstable_Eval_RequestCodeExtraIndex``. The old private name "
309415
"is deprecated, but will be available until the API changes."
310416
msgstr ""
311417

312-
#: ../../c-api/code.rst:249
418+
#: ../../c-api/code.rst:314
313419
msgid ""
314420
"Set *extra* to the extra data stored under the given index. Return 0 on "
315421
"success. Set an exception and return -1 on failure."
316422
msgstr ""
317423

318-
#: ../../c-api/code.rst:252
424+
#: ../../c-api/code.rst:317
319425
msgid ""
320426
"If no data was set under the index, set *extra* to ``NULL`` and return 0 "
321427
"without setting an exception."
322428
msgstr ""
323429

324-
#: ../../c-api/code.rst:257
430+
#: ../../c-api/code.rst:322
325431
msgid "as ``_PyCode_GetExtra``"
326432
msgstr ""
327433

328-
#: ../../c-api/code.rst:261
434+
#: ../../c-api/code.rst:326
329435
msgid ""
330436
"Renamed to ``PyUnstable_Code_GetExtra``. The old private name is deprecated, "
331437
"but will be available until the API changes."
332438
msgstr ""
333439

334-
#: ../../c-api/code.rst:267
440+
#: ../../c-api/code.rst:332
335441
msgid ""
336442
"Set the extra data stored under the given index to *extra*. Return 0 on "
337443
"success. Set an exception and return -1 on failure."
338444
msgstr ""
339445

340-
#: ../../c-api/code.rst:272
446+
#: ../../c-api/code.rst:337
341447
msgid "as ``_PyCode_SetExtra``"
342448
msgstr ""
343449

344-
#: ../../c-api/code.rst:276
450+
#: ../../c-api/code.rst:341
345451
msgid ""
346452
"Renamed to ``PyUnstable_Code_SetExtra``. The old private name is deprecated, "
347453
"but will be available until the API changes."
@@ -367,14 +473,14 @@ msgstr "PyCode_New (C 関数)"
367473
msgid "PyCode_NewWithPosOnlyArgs (C function)"
368474
msgstr "PyCode_NewWithPosOnlyArgs (C 関数)"
369475

370-
#: ../../c-api/code.rst:237
476+
#: ../../c-api/code.rst:302
371477
msgid "_PyEval_RequestCodeExtraIndex (C function)"
372478
msgstr "_PyEval_RequestCodeExtraIndex (C 関数)"
373479

374-
#: ../../c-api/code.rst:255
480+
#: ../../c-api/code.rst:320
375481
msgid "_PyCode_GetExtra (C function)"
376482
msgstr "_PyCode_GetExtra (C 関数)"
377483

378-
#: ../../c-api/code.rst:270
484+
#: ../../c-api/code.rst:335
379485
msgid "_PyCode_SetExtra (C function)"
380486
msgstr "_PyCode_SetExtra (C 関数)"

c-api/concrete.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: 2025-06-20 14:21+0000\n"
15+
"POT-Creation-Date: 2025-07-11 14:21+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
1717
"Last-Translator: tomo, 2023\n"
1818
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

c-api/coro.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: 2025-06-20 14:21+0000\n"
15+
"POT-Creation-Date: 2025-07-11 14:21+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
1717
"Last-Translator: Takanori Suzuki <[email protected]>, 2021\n"
1818
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

c-api/descriptor.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-06-20 14:21+0000\n"
14+
"POT-Creation-Date: 2025-07-11 14:21+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
1616
"Last-Translator: tomo, 2021\n"
1717
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

0 commit comments

Comments
 (0)