8000 [skip ci] Update .po files · python/python-docs-ja@a830795 · GitHub
[go: up one dir, main page]

Skip to content

Commit a830795

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 8ecd01f commit a830795

File tree

3 files changed

+5174
-5173
lines changed

3 files changed

+5174
-5173
lines changed

c-api/type.po

Lines changed: 25 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.8\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2019-09-01 14:24+0000\n"
17+
"POT-Creation-Date: 2019-09-15 11:27+0000\n"
1818
"PO-Revision-Date: 2017-02-16 17:39+0000\n"
1919
"Last-Translator: tomo, 2019\n"
2020
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -199,121 +199,117 @@ msgstr ""
199199
msgid "Name of the type, used to set :c:member:`PyTypeObject.tp_name`."
200200
msgstr ""
201201

202-
#: ../../c-api/type.rst:147
203-
msgid "Type docstring, used to set :c:member:`PyTypeObject.tp_doc`."
204-
msgstr ""
205-
206-
#: ../../c-api/type.rst:152
202+
#: ../../c-api/type.rst:148
207203
msgid ""
208204
"Size of the instance in bytes, used to set "
209205
":c:member:`PyTypeObject.tp_basicsize` and "
210206
":c:member:`PyTypeObject.tp_itemsize`."
211207
msgstr ""
212208

213-
#: ../../c-api/type.rst:158
209+
#: ../../c-api/type.rst:154
214210
msgid "Type flags, used to set :c:member:`PyTypeObject.tp_flags`."
215211
msgstr ""
216212

217-
#: ../../c-api/type.rst:160
213+
#: ../../c-api/type.rst:156
218214
msgid ""
219215
"If the ``Py_TPFLAGS_HEAPTYPE`` flag is not set, "
220216
":c:func:`PyType_FromSpecWithBases` sets it automatically."
221217
msgstr ""
222218

223-
#: ../../c-api/type.rst:165
219+
#: ../../c-api/type.rst:161
224220
msgid ""
225221
"Array of :c:type:`PyType_Slot` structures. Terminated by the special slot "
226222
"value ``{0, NULL}``."
227223
msgstr ""
228224

229-
#: ../../c-api/type.rst:170
225+
#: ../../c-api/type.rst:166
230226
msgid ""
231227
"Structure defining optional functionality of a type, containing a slot ID "
232228
"and a value pointer."
233229
msgstr ""
234230

235-
#: ../../c-api/type.rst:175
231+
#: ../../c-api/type.rst:171
236232
msgid "A slot ID."
237233
msgstr ""
238234

239-
#: ../../c-api/type.rst:177
235+
#: ../../c-api/type.rst:173
240236
msgid ""
241237
"Slot IDs are named like the field names of the structures "
242238
":c:type:`PyTypeObject`, :c:type:`PyNumberMethods`, "
243239
":c:type:`PySequenceMethods`, :c:type:`PyMappingMethods` and "
244240
":c:type:`PyAsyncMethods` with an added ``Py_`` prefix. For example, use:"
245241
msgstr ""
246242

247-
#: ../../c-api/type.rst:183
243+
#: ../../c-api/type.rst:179
248244
msgid "``Py_tp_dealloc`` to set :c:member:`PyTypeObject.tp_dealloc`"
249245
msgstr ""
250246

251-
#: ../../c-api/type.rst:184
247+
#: ../../c-api/type.rst:180
252248
msgid "``Py_nb_add`` to set :c:member:`PyNumberMethods.nb_add`"
253249
msgstr ""
254250

255-
#: ../../c-api/type.rst:185
251+
#: ../../c-api/type.rst:181
256252
msgid "``Py_sq_length`` to set :c:member:`PySequenceMethods.sq_length`"
257253
msgstr ""
258254

259-
#: ../../c-api/type.rst:187
255+
#: ../../c-api/type.rst:183
260256
msgid ""
261257
"The following fields cannot be set using *PyType_Spec* and *PyType_Slot*:"
262258
msgstr ""
263259

264-
#: ../../c-api/type.rst:189
260+
#: ../../c-api/type.rst:185
265261
msgid ":c:member:`~PyTypeObject.tp_dict`"
266262
msgstr ""
267263

268-
#: ../../c-api/type.rst:190
264+
#: ../../c-api/type.rst:186
269265
msgid ":c:member:`~PyTypeObject.tp_mro`"
270266
msgstr ""
271267

272-
#: ../../c-api/type.rst:191
268+
#: ../../c-api/type.rst:187
273269
msgid ":c:member:`~PyTypeObject.tp_cache`"
274270
msgstr ""
275271

276-
#: ../../c-api/type.rst:192
272+
#: ../../c-api/type.rst:188
277273
msgid ":c:member:`~PyTypeObject.tp_subclasses`"
278274
msgstr ""
279275

280-
#: ../../c-api/type.rst:193
276+
#: ../../c-api/type.rst:189
281277
msgid ":c:member:`~PyTypeObject.tp_weaklist`"
282278
msgstr ""
283279

284-
#: ../../c-api/type.rst:194
280+
#: ../../c-api/type.rst:190
285281
msgid ":c:member:`~PyTypeObject.tp_print`"
286282
msgstr ""
287283

288-
#: ../../c-api/type.rst:195
284+
#: ../../c-api/type.rst:191
289285
msgid ":c:member:`~PyTypeObject.tp_weaklistoffset`"
290286
msgstr ""
291287

292-
#: ../../c-api/type.rst:196
288+
#: ../../c-api/type.rst:192
293289
msgid ":c:member:`~PyTypeObject.tp_dictoffset`"
294290
msgstr ""
295291

296-
#: ../../c-api/type.rst:197
292+
#: ../../c-api/type.rst:193
297293
msgid ":c:member:`~PyBufferProcs.bf_getbuffer`"
298294
msgstr ""
299295

300-
#: ../../c-api/type.rst:198
296+
#: ../../c-api/type.rst:194
301297
msgid ":c:member:`~PyBufferProcs.bf_releasebuffer`"
302298
msgstr ""
303299

304-
#: ../../c-api/type.rst:200
300+
#: ../../c-api/type.rst:196
305301
msgid ""
306302
"Setting :c:data:`Py_tp_bases` may be problematic on some platforms. To avoid"
307303
" issues, use the *bases* argument of :py:func:`PyType_FromSpecWithBases` "
308304
"instead."
309305
msgstr ""
310306

311-
#: ../../c-api/type.rst:206
307+
#: ../../c-api/type.rst:202
312308
msgid ""
313309
"The desired value of the slot. In most cases, this is a pointer to a "
314310
"function."
315311
msgstr ""
316312

317-
#: ../../c-api/type.rst:209
313+
#: ../../c-api/type.rst:205
318314
msgid "May not be *NULL*."
319315
msgstr ""

tutorial/inputoutput.po

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.8\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2019-09-11 00:37+0000\n"
19+
"POT-Creation-Date: 2019-09-15 11:27+0000\n"
2020
"PO-Revision-Date: 2017-02-16 23:40+0000\n"
2121
"Last-Translator: tomo, 2019\n"
2222
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -474,19 +474,18 @@ msgstr ""
474474

475475
#: ../../tutorial/inputoutput.rst:415
476476
msgid ""
477-
"To change the file object's position, use ``f.seek(offset, from_what)``. "
478-
"The position is computed from adding *offset* to a reference point; the "
479-
"reference point is selected by the *from_what* argument. A *from_what* "
480-
"value of 0 measures from the beginning of the file, 1 uses the current file "
481-
"position, and 2 uses the end of the file as the reference point. "
482-
"*from_what* can be omitted and defaults to 0, using the beginning of the "
483-
"file as the reference point. ::"
484-
msgstr ""
485-
"ファイルオブジェクトの位置を変更するには、``f.seek(offset, from_what)`` を使います。ファイル位置は基準点 "
486-
"(reference point) にオフセット値 *offset* を足して計算されます。参照点は *from_what* "
487-
"引数で選びます。*from_what* の値が 0 ならばファイルの 先頭から測り、1 ならば現在のファイル位置を使い、2 "
488-
"ならばファイルの終端を参照点として使います。*from_what* は省略することができ、デフォルトの値は "
489-
"0、すなわち参照点としてファイルの先頭を使います。 ::"
477+
"To change the file object's position, use ``f.seek(offset, whence)``. The "
478+
"position is computed from adding *offset* to a reference point; the "
479+
"reference point is selected by the *whence* argument. A *whence* value of 0"
480+
" measures from the beginning of the file, 1 uses the current file position, "
481+
"and 2 uses the end of the file as the reference point. *whence* can be "
482+
"omitted and defaults to 0, using the beginning of the file as the reference "
483+
"point. ::"
484+
msgstr ""
485+
"ファイルオブジェクトの位置を変更するには、``f.seek(offset, whence)`` を使います。ファイル位置は基準点 (reference "
486+
"point) にオフセット値 *offset* を足して計算されます。参照点は *whence* 引数で選びます。*whence* の値が 0 "
487+
"ならばファイルの 先頭から測り、1 ならば現在のファイル位置を使い、2 ならばファイルの終端を参照点として使います。*whence* "
488+
"は省略することができ、デフォルトの値は 0、すなわち参照点としてファイルの先頭を使います。 ::"
490489

491490
#: ../../tutorial/inputoutput.rst:434
492491
msgid ""

0 commit comments

Comments
 (0)
0