Skip to content

Commit 2ca9bbe

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 3e1a0be commit 2ca9bbe

Some content is hidden

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

41 files changed

+15068
-14997
lines changed

c-api/dict.po

+5-6
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2025-02-07 14:17+0000\n"
16+
"POT-Creation-Date: 2025-02-21 14:16+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
1818
"Last-Translator: tomo, 2024\n"
1919
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -211,9 +211,8 @@ msgstr ""
211211

212212
#: ../../c-api/dict.rst:159
213213
msgid ""
214-
"Similar than :c:func:`PyDict_GetItemRef`, but *key* is specified as a :c:"
215-
"expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
216-
"`PyObject*`."
214+
"Similar to :c:func:`PyDict_GetItemRef`, but *key* is specified as a :c:expr:"
215+
"`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`."
217216
msgstr ""
218217

219218
#: ../../c-api/dict.rst:168
@@ -271,8 +270,8 @@ msgstr ""
271270

272271
#: ../../c-api/dict.rst:209
273272
msgid ""
274-
"This is similar to :meth:`dict.pop`, but without the default value and not "
275-
"raising :exc:`KeyError` if the key missing."
273+
"Similar to :meth:`dict.pop`, but without the default value and not raising :"
274+
"exc:`KeyError` if the key missing."
276275
msgstr ""
277276

278277
#: ../../c-api/dict.rst:217

c-api/function.po

+29-13
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-02-14 14:17+0000\n"
15+
"POT-Creation-Date: 2025-02-21 14:16+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
1717
"Last-Translator: Taichi Haradaguchi, 2024\n"
1818
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -192,32 +192,48 @@ msgid ""
192192
msgstr ""
193193

194194
#: ../../c-api/function.rst:148
195-
msgid ""
196-
"Enumeration of possible function watcher events: - "
197-
"``PyFunction_EVENT_CREATE`` - ``PyFunction_EVENT_DESTROY`` - "
198-
"``PyFunction_EVENT_MODIFY_CODE`` - ``PyFunction_EVENT_MODIFY_DEFAULTS`` - "
199-
"``PyFunction_EVENT_MODIFY_KWDEFAULTS``"
195+
msgid "Enumeration of possible function watcher events:"
196+
msgstr ""
197+
198+
#: ../../c-api/function.rst:150
199+
msgid "``PyFunction_EVENT_CREATE``"
200+
msgstr ""
201+
202+
#: ../../c-api/function.rst:151
203+
msgid "``PyFunction_EVENT_DESTROY``"
204+
msgstr ""
205+
206+
#: ../../c-api/function.rst:152
207+
msgid "``PyFunction_EVENT_MODIFY_CODE``"
208+
msgstr ""
209+
210+
#: ../../c-api/function.rst:153
211+
msgid "``PyFunction_EVENT_MODIFY_DEFAULTS``"
212+
msgstr ""
213+
214+
#: ../../c-api/function.rst:154
215+
msgid "``PyFunction_EVENT_MODIFY_KWDEFAULTS``"
200216
msgstr ""
201217

202-
#: ../../c-api/function.rst:160
218+
#: ../../c-api/function.rst:161
203219
msgid "Type of a function watcher callback function."
204220
msgstr ""
205221

206-
#: ../../c-api/function.rst:162
222+
#: ../../c-api/function.rst:163
207223
msgid ""
208224
"If *event* is ``PyFunction_EVENT_CREATE`` or ``PyFunction_EVENT_DESTROY`` "
209225
"then *new_value* will be ``NULL``. Otherwise, *new_value* will hold a :term:"
210226
"`borrowed reference` to the new value that is about to be stored in *func* "
211227
"for the attribute that is being modified."
212228
msgstr ""
213229

214-
#: ../../c-api/function.rst:167
230+
#: ../../c-api/function.rst:168
215231
msgid ""
216232
"The callback may inspect but must not modify *func*; doing so could have "
217233
"unpredictable effects, including infinite recursion."
218234
msgstr ""
219235

220-
#: ../../c-api/function.rst:170
236+
#: ../../c-api/function.rst:171
221237
msgid ""
222238
"If *event* is ``PyFunction_EVENT_CREATE``, then the callback is invoked "
223239
"after `func` has been fully initialized. Otherwise, the callback is invoked "
@@ -229,22 +245,22 @@ msgid ""
229245
"semantics of the Python code being executed."
230246
msgstr ""
231247

232-
#: ../../c-api/function.rst:179
248+
#: ../../c-api/function.rst:180
233249
msgid ""
234250
"If *event* is ``PyFunction_EVENT_DESTROY``, Taking a reference in the "
235251
"callback to the about-to-be-destroyed function will resurrect it, preventing "
236252
"it from being freed at this time. When the resurrected object is destroyed "
237253
"later, any watcher callbacks active at that time will be called again."
238254
msgstr ""
239255

240-
#: ../../c-api/function.rst:184
256+
#: ../../c-api/function.rst:185
241257
msgid ""
242258
"If the callback sets an exception, it must return ``-1``; this exception "
243259
"will be printed as an unraisable exception using :c:func:"
244260
"`PyErr_WriteUnraisable`. Otherwise it should return ``0``."
245261
msgstr ""
246262

247-
#: ../../c-api/function.rst:188
263+
#: ../../c-api/function.rst:189
248264
msgid ""
249265
"There may already be a pending exception set on entry to the callback. In "
250266
"this case, the callback should return ``0`` with the same exception still "

c-api/slice.po

+8-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2025-02-07 14:17+0000\n"
16+
"POT-Creation-Date: 2025-02-21 14:16+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:50+0000\n"
1818
"Last-Translator: 石井明久, 2024\n"
1919
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -176,13 +176,19 @@ msgstr "Ellipsis オブジェクト"
176176

177177
#: ../../c-api/slice.rst:123
178178
msgid ""
179+
"The type of Python :const:`Ellipsis` object. Same as :class:`types."
180+
"EllipsisType` in the Python layer."
181+
msgstr ""
182+
183+
#: ../../c-api/slice.rst:129
184+
msgid ""
179185
"The Python ``Ellipsis`` object. This object has no methods. Like :c:data:"
180186
"`Py_None`, it is an :term:`immortal` singleton object."
181187
msgstr ""
182188
"Python の ``Ellipsis`` オブジェクト。このオブジェクトにはメソッドがありませ"
183189
"ん。 :c:data:`Py_None` と同様、これは :term:`immortal` でシングルトンなオブ"
184190
"ジェクトです。"
185191

186-
#: ../../c-api/slice.rst:126
192+
#: ../../c-api/slice.rst:132
187193
msgid ":c:data:`Py_Ellipsis` is immortal."
188194
msgstr ":c:data:`Py_Ellipsis` は immortal です。"

0 commit comments

Comments
 (0)