6
6
# Translators:
7
7
# Arihiro TAKASE, 2017
8
8
# Osamu NAKAMURA, 2017
9
- # tomo, 2017
9
+ # tomo, 2019
10
10
#
11
11
#, fuzzy
12
12
msgid ""
13
13
msgstr ""
14
14
"Project-Id-Version : Python 3.7\n "
15
15
"Report-Msgid-Bugs-To : \n "
16
- "POT-Creation-Date : 2019-01-01 10:14 +0900\n "
16
+ "POT-Creation-Date : 2019-06-08 11:36 +0900\n "
17
17
"PO-Revision-Date : 2017-02-16 17:36+0000\n "
18
- "Last-Translator : tomo, 2017 \n "
18
+ "Last-Translator : tomo, 2019 \n "
19
19
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
20
20
"MIME-Version : 1.0\n "
21
21
"Content-Type : text/plain; charset=UTF-8\n "
@@ -38,6 +38,8 @@ msgid ""
38
38
"be distinguished from a number. Use :c:func:`PyErr_Occurred` to "
39
39
"disambiguate."
40
40
msgstr ""
41
+ "エラーが起きると、ほとんどの ``PyLong_As*`` API は ``(return type)-1`` を返しますが、これは数値と見分けが付きません。\n"
42
+ "見分けを付けるためには :c:func:`PyErr_Occurred` を使ってください。"
41
43
42
44
#: ../../c-api/long.rst:18
43
45
msgid "This subtype of :c:type:`PyObject` represents a Python integer object."
@@ -204,11 +206,12 @@ msgid ""
204
206
msgstr "もし *obj* の値が :c:type:`long` の範囲外であれば、 :exc:`OverflowError` を送出します。"
205
207
206
208
#: ../../c-api/long.rst:140 ../../c-api/long.rst:154 ../../c-api/long.rst:169
207
- #: ../../c-api/long.rst:183 ../../c-api/long.rst:200 ../../c-api/long.rst:262
208
- #: ../../c-api/long.rst:274
209
+ #: ../../c-api/long.rst:183 ../../c-api/long.rst:200
209
210
msgid ""
210
211
"Returns ``-1`` on error. Use :c:func:`PyErr_Occurred` to disambiguate."
211
212
msgstr ""
213
+ "エラーが起きたときに ``-1`` を返します。\n"
214
+ "見分けを付けるためには :c:func:`PyErr_Occurred` を使ってください。"
212
215
213
216
#: ../../c-api/long.rst:149
214
217
msgid ""
@@ -280,6 +283,8 @@ msgid ""
280
283
"Returns ``(unsigned long)-1`` on error. Use :c:func:`PyErr_Occurred` to "
281
284
"disambiguate."
282
285
msgstr ""
286
+ "エラーが起きたときに ``(unsigned long)-1`` を返します。\n"
287
+ "見分けを付けるためには :c:func:`PyErr_Occurred` を使ってください。"
283
288
284
289
#: ../../c-api/long.rst:225
285
290
msgid ""
@@ -301,6 +306,8 @@ msgid ""
301
306
"Returns ``(size_t)-1`` on error. Use :c:func:`PyErr_Occurred` to "
302
307
"disambiguate."
303
308
msgstr ""
309
+ "エラーが起きたときに ``(size_t)-1`` を返します。\n"
310
+ "見分けを付けるためには :c:func:`PyErr_Occurred` を使ってください。"
304
311
305
312
#: ../../c-api/long.rst:240
306
313
msgid ""
@@ -323,6 +330,8 @@ msgid ""
323
330
"Returns ``(unsigned long long)-1`` on error. Use :c:func:`PyErr_Occurred` to"
324
331
" disambiguate."
325
332
msgstr ""
333
+ "エラーが起きたときに ``(unsigned long long)-1`` を返します。\n"
334
+ "見分けを付けるためには :c:func:`PyErr_Occurred` を使ってください。"
326
335
327
336
#: ../../c-api/long.rst:249
328
337
msgid ""
@@ -349,7 +358,15 @@ msgstr ""
349
358
"*obj* の値が :c:type:`unsigned long` の範囲から外れていた場合は、 ``ULONG_MAX + 1`` "
350
359
"を法とした剰余を返します。"
351
360
352
- #: ../../c-api/long.rst:267
361
+ #: ../../c-api/long.rst:262
362
+ msgid ""
363
+ "Returns ``(unsigned long)-1`` on error. Use :c:func:`PyErr_Occurred` to "
364
+ "disambiguate."
365
+ msgstr ""
366
+ "エラーが起きたときに ``(unsigned long)-1`` を返します。\n"
367
+ "見分けを付けるためには :c:func:`PyErr_Occurred` を使ってください。"
368
+
369
+ #: ../../c-api/long.rst:268
353
370
msgid ""
354
371
"Return a C :c:type:`unsigned long long` representation of *obj*. If *obj* "
355
372
"is not an instance of :c:type:`PyLongObject`, first call its :meth:`__int__`"
@@ -359,35 +376,45 @@ msgstr ""
359
376
":c:type:`PyLongObject` のインスタンスでなければ、まず、その :meth:`__int__` メソッドを (もしあれば) "
360
377
"呼び出して、オブジェクトを :c:type:`PyLongObject` に変換します。"
361
378
362
- #: ../../c-api/long.rst:271
379
+ #: ../../c-api/long.rst:272
363
380
msgid ""
364
381
"If the value of *obj* is out of range for an :c:type:`unsigned long long`, "
365
382
"return the reduction of that value modulo ``PY_ULLONG_MAX + 1``."
366
383
msgstr ""
367
384
"*obj* の値が :c:type:`unsigned long long` の範囲から外れていた場合は、 ``PY_ULLONG_MAX + 1`` "
368
385
"を法とした剰余を返します。"
369
386
370
- #: ../../c-api/long.rst:279
387
+ #: ../../c-api/long.rst:275
388
+ msgid ""
389
+ "Returns ``(unsigned long long)-1`` on error. Use :c:func:`PyErr_Occurred` "
390
+ "to disambiguate."
391
+ msgstr ""
392
+ "エラーが起きたときに ``(unsigned long long)-1`` を返します。\n"
393
+ "見分けを付けるためには :c:func:`PyErr_Occurred` を使ってください。"
394
+
395
+ #: ../../c-api/long.rst:281
371
396
msgid ""
372
397
"Return a C :c:type:`double` representation of *pylong*. *pylong* must be an"
373
398
" instance of :c:type:`PyLongObject`."
374
399
msgstr ""
375
400
"*pylong* を表す C の :c:type:`double` を返します。 *pylong* は :c:type:`PyLongObject` "
376
401
"のインスタンスでなければなりません。"
377
402
378
- #: ../../c-api/long.rst:282
403
+ #: ../../c-api/long.rst:284
379
404
msgid ""
380
405
"Raise :exc:`OverflowError` if the value of *pylong* is out of range for a "
381
406
":c:type:`double`."
382
407
msgstr ""
383
408
"もし *pylong* の値が :c:type:`double` の範囲外であれば、 :exc:`OverflowError` を送出します。"
384
409
385
- #: ../../c-api/long.rst:285
410
+ #: ../../c-api/long.rst:287
386
411
msgid ""
387
412
"Returns ``-1.0`` on error. Use :c:func:`PyErr_Occurred` to disambiguate."
388
413
msgstr ""
414
+ "エラーが起きたときに ``-1.0`` を返します。\n"
415
+ "見分けを付けるためには :c:func:`PyErr_Occurred` を使ってください。"
389
416
390
- #: ../../c-api/long.rst:290
417
+ #: ../../c-api/long.rst:292
391
418
msgid ""
392
419
"Convert a Python integer *pylong* to a C :c:type:`void` pointer. If *pylong*"
393
420
" cannot be converted, an :exc:`OverflowError` will be raised. This is only "
@@ -398,7 +425,9 @@ msgstr ""
398
425
"を変換できなければ、 :exc:`OverflowError` を送出します。この関数は :c:func:`PyLong_FromVoidPtr` "
399
426
"で値を生成するときに使うような :c:type:`void` ポインタ型を生成できるだけです。"
400
427
401
- #: ../../c-api/long.rst:295
428
+ #: ../../c-api/long.rst:297
402
429
msgid ""
403
430
"Returns *NULL* on error. Use :c:func:`PyErr_Occurred` to disambiguate."
404
431
msgstr ""
432
+ "エラーが起きたときに *NULL* を返します。\n"
433
+ "見分けを付けるためには :c:func:`PyErr_Occurred` を使ってください。"
0 commit comments