Skip to content

Commit 2f8e13e

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 4a31cd7 commit 2f8e13e

File tree

10 files changed

+14607
-14473
lines changed

10 files changed

+14607
-14473
lines changed

c-api/frame.po

Lines changed: 43 additions & 42 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-02-19 14:43+0000\n"
14+
"POT-Creation-Date: 2026-03-01 14:19+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/"
@@ -86,80 +86,81 @@ msgstr ""
8686

8787
#: ../../c-api/frame.rst:51
8888
msgid ""
89-
"Return a :term:`strong reference`, or ``NULL`` if *frame* has no outer frame."
89+
"Return a :term:`strong reference`, or ``NULL`` if *frame* has no outer "
90+
"frame. This raises no exceptions."
9091
msgstr ""
9192

92-
#: ../../c-api/frame.rst:59
93+
#: ../../c-api/frame.rst:60
9394
msgid "Get the *frame*'s :attr:`~frame.f_builtins` attribute."
9495
msgstr ""
9596

96-
#: ../../c-api/frame.rst:61 ../../c-api/frame.rst:92
97+
#: ../../c-api/frame.rst:62 ../../c-api/frame.rst:93
9798
msgid "Return a :term:`strong reference`. The result cannot be ``NULL``."
9899
msgstr ""
99100

100-
#: ../../c-api/frame.rst:68
101+
#: ../../c-api/frame.rst:69
101102
msgid "Get the *frame* code."
102103
msgstr ""
103104

104-
#: ../../c-api/frame.rst:70 ../../c-api/frame.rst:136
105+
#: ../../c-api/frame.rst:71 ../../c-api/frame.rst:137
105106
msgid "Return a :term:`strong reference`."
106107
msgstr ""
107108

108-
#: ../../c-api/frame.rst:72
109+
#: ../../c-api/frame.rst:73
109110
msgid "The result (frame code) cannot be ``NULL``."
110111
msgstr ""
111112

112-
#: ../../c-api/frame.rst:79
113+
#: ../../c-api/frame.rst:80
113114
msgid ""
114115
"Get the generator, coroutine, or async generator that owns this frame, or "
115116
"``NULL`` if this frame is not owned by a generator. Does not raise an "
116117
"exception, even if the return value is ``NULL``."
117118
msgstr ""
118119

119-
#: ../../c-api/frame.rst:83
120+
#: ../../c-api/frame.rst:84
120121
msgid "Return a :term:`strong reference`, or ``NULL``."
121122
msgstr ""
122123

123-
#: ../../c-api/frame.rst:90
124+
#: ../../c-api/frame.rst:91
124125
msgid "Get the *frame*'s :attr:`~frame.f_globals` attribute."
125126
msgstr ""
126127

127-
#: ../../c-api/frame.rst:99
128+
#: ../../c-api/frame.rst:100
128129
msgid "Get the *frame*'s :attr:`~frame.f_lasti` attribute."
129130
msgstr ""
130131

131-
#: ../../c-api/frame.rst:101
132+
#: ../../c-api/frame.rst:102
132133
msgid "Returns -1 if ``frame.f_lasti`` is ``None``."
133134
msgstr ""
134135

135-
#: ../../c-api/frame.rst:108
136+
#: ../../c-api/frame.rst:109
136137
msgid "Get the variable *name* of *frame*."
137138
msgstr ""
138139

139-
#: ../../c-api/frame.rst:110
140+
#: ../../c-api/frame.rst:111
140141
msgid "Return a :term:`strong reference` to the variable value on success."
141142
msgstr ""
142143

143-
#: ../../c-api/frame.rst:111
144+
#: ../../c-api/frame.rst:112
144145
msgid ""
145146
"Raise :exc:`NameError` and return ``NULL`` if the variable does not exist."
146147
msgstr ""
147148

148-
#: ../../c-api/frame.rst:112
149+
#: ../../c-api/frame.rst:113
149150
msgid "Raise an exception and return ``NULL`` on error."
150151
msgstr ""
151152

152-
#: ../../c-api/frame.rst:114
153+
#: ../../c-api/frame.rst:115
153154
msgid "*name* type must be a :class:`str`."
154155
msgstr ""
155156

156-
#: ../../c-api/frame.rst:121
157+
#: ../../c-api/frame.rst:122
157158
msgid ""
158159
"Similar to :c:func:`PyFrame_GetVar`, but the variable name is a C string "
159160
"encoded in UTF-8."
160161
msgstr ""
161162

162-
#: ../../c-api/frame.rst:129
163+
#: ../../c-api/frame.rst:130
163164
msgid ""
164165
"Get the *frame*'s :attr:`~frame.f_locals` attribute. If the frame refers to "
165166
"an :term:`optimized scope`, this returns a write-through proxy object that "
@@ -168,21 +169,21 @@ msgid ""
168169
"directly (as described for :func:`locals`)."
169170
msgstr ""
170171

171-
#: ../../c-api/frame.rst:140
172+
#: ../../c-api/frame.rst:141
172173
msgid ""
173174
"As part of :pep:`667`, return an instance of :c:var:"
174175
"`PyFrameLocalsProxy_Type`."
175176
msgstr ""
176177

177-
#: ../../c-api/frame.rst:146
178+
#: ../../c-api/frame.rst:147
178179
msgid "Return the line number that *frame* is currently executing."
179180
msgstr "*frame* が現在実行している行番号を返します。"
180181

181-
#: ../../c-api/frame.rst:150
182+
#: ../../c-api/frame.rst:151
182183
msgid "Frame Locals Proxies"
183184
msgstr ""
184185

185-
#: ../../c-api/frame.rst:154
186+
#: ../../c-api/frame.rst:155
186187
msgid ""
187188
"The :attr:`~frame.f_locals` attribute on a :ref:`frame object <frame-"
188189
"objects>` is an instance of a \"frame-locals proxy\". The proxy object "
@@ -191,34 +192,34 @@ msgid ""
191192
"to date with the live local variables in the frame itself."
192193
msgstr ""
193194

194-
#: ../../c-api/frame.rst:160
195+
#: ../../c-api/frame.rst:161
195196
msgid "See :pep:`667` for more information."
196197
msgstr ""
197198

198-
#: ../../c-api/frame.rst:164
199+
#: ../../c-api/frame.rst:165
199200
msgid "The type of frame :func:`locals` proxy objects."
200201
msgstr ""
201202

202-
#: ../../c-api/frame.rst:168
203+
#: ../../c-api/frame.rst:169
203204
msgid "Return non-zero if *obj* is a frame :func:`locals` proxy."
204205
msgstr ""
205206

206-
#: ../../c-api/frame.rst:172
207+
#: ../../c-api/frame.rst:173
207208
msgid "Legacy Local Variable APIs"
208209
msgstr ""
209210

210-
#: ../../c-api/frame.rst:174
211+
#: ../../c-api/frame.rst:175
211212
msgid ""
212213
"These APIs are :term:`soft deprecated`. As of Python 3.13, they do nothing. "
213214
"They exist solely for backwards compatibility."
214215
msgstr ""
215216

216-
#: ../../c-api/frame.rst:180 ../../c-api/frame.rst:194
217-
#: ../../c-api/frame.rst:207
217+
#: ../../c-api/frame.rst:181 ../../c-api/frame.rst:195
218+
#: ../../c-api/frame.rst:208
218219
msgid "This function is :term:`soft deprecated` and does nothing."
219220
msgstr ""
220221

221-
#: ../../c-api/frame.rst:182
222+
#: ../../c-api/frame.rst:183
222223
msgid ""
223224
"Prior to Python 3.13, this function would copy the :attr:`~frame.f_locals` "
224225
"attribute of *f* to the internal \"fast\" array of local variables, allowing "
@@ -227,51 +228,51 @@ msgid ""
227228
"dictionary."
228229
msgstr ""
229230

230-
#: ../../c-api/frame.rst:188 ../../c-api/frame.rst:201
231-
#: ../../c-api/frame.rst:213
231+
#: ../../c-api/frame.rst:189 ../../c-api/frame.rst:202
232+
#: ../../c-api/frame.rst:214
232233
msgid "This function now does nothing."
233234
msgstr ""
234235

235-
#: ../../c-api/frame.rst:196
236+
#: ../../c-api/frame.rst:197
236237
msgid ""
237238
"Prior to Python 3.13, this function would copy the internal \"fast\" array "
238239
"of local variables (which is used by the interpreter) to the :attr:`~frame."
239240
"f_locals` attribute of *f*, allowing changes in local variables to be "
240241
"visible to frame objects."
241242
msgstr ""
242243

243-
#: ../../c-api/frame.rst:209
244+
#: ../../c-api/frame.rst:210
244245
msgid ""
245246
"Prior to Python 3.13, this function was similar to :c:func:"
246247
"`PyFrame_FastToLocals`, but would return ``0`` on success, and ``-1`` with "
247248
"an exception set on failure."
248249
msgstr ""
249250

250-
#: ../../c-api/frame.rst:218
251+
#: ../../c-api/frame.rst:219
251252
msgid ":pep:`667`"
252253
msgstr ""
253254

254-
#: ../../c-api/frame.rst:222
255+
#: ../../c-api/frame.rst:223
255256
msgid "Internal Frames"
256257
msgstr ""
257258

258-
#: ../../c-api/frame.rst:224
259+
#: ../../c-api/frame.rst:225
259260
msgid "Unless using :pep:`523`, you will not need this."
260261
msgstr ""
261262

262-
#: ../../c-api/frame.rst:228
263+
#: ../../c-api/frame.rst:229
263264
msgid "The interpreter's internal frame representation."
264265
msgstr ""
265266

266-
#: ../../c-api/frame.rst:234
267+
#: ../../c-api/frame.rst:235
267268
msgid "Return a :term:`strong reference` to the code object for the frame."
268269
msgstr ""
269270

270-
#: ../../c-api/frame.rst:241
271+
#: ../../c-api/frame.rst:242
271272
msgid "Return the byte offset into the last executed instruction."
272273
msgstr ""
273274

274-
#: ../../c-api/frame.rst:248
275+
#: ../../c-api/frame.rst:249
275276
msgid ""
276277
"Return the currently executing line number, or -1 if there is no line number."
277278
msgstr ""

c-api/iterator.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: 2026-02-07 14:20+0000\n"
14+
"POT-Creation-Date: 2026-03-01 14:19+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/"

0 commit comments

Comments
 (0)