Skip to content

Commit 13fd66f

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent fab7dd6 commit 13fd66f

File tree

3 files changed

+4455
-4404
lines changed

3 files changed

+4455
-4404
lines changed

library/array.po

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.7\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2019-08-23 03:16+0000\n"
14+
"POT-Creation-Date: 2019-12-10 04:18+0000\n"
1515
"PO-Revision-Date: 2019-09-01 03:28+0000\n"
1616
"Last-Translator: tomo, 2019\n"
1717
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -379,7 +379,7 @@ msgstr ""
379379
msgid "Deprecated alias for :meth:`frombytes`."
380380
msgstr ":meth:`frombytes` に対する廃止予定のエイリアス"
381381

382-
#: ../../library/array.rst:178
382+
#: ../../library/array.rst:180
383383
msgid ""
384384
"Extends this array with data from the given unicode string. The array must "
385385
"be a type ``'u'`` array; otherwise a :exc:`ValueError` is raised. Use "
@@ -390,20 +390,20 @@ msgstr ""
390390
":exc:`ValueError` を送出します。他の型のアレイに Unicode 型のデータを追加するには、 "
391391
"``array.frombytes(unicodestring.encode(enc))`` を使ってください。"
392392

393-
#: ../../library/array.rst:186
393+
#: ../../library/array.rst:188
394394
msgid ""
395395
"Return the smallest *i* such that *i* is the index of the first occurrence "
396396
"of *x* in the array."
397397
msgstr "アレイ中で *x* が出現するインデクスのうち最小の値 *i* を返します。"
398398

399-
#: ../../library/array.rst:192
399+
#: ../../library/array.rst:194
400400
msgid ""
401401
"Insert a new item with value *x* in the array before position *i*. Negative "
402402
"values are treated as being relative to the end of the array."
403403
msgstr ""
404404
"アレイ中の位置 *i* の前に値 *x* をもつ新しい要素を挿入します。 *i* の値が負の場合、アレイの末尾からの相対位置として扱います。"
405405

406-
#: ../../library/array.rst:198
406+
#: ../../library/array.rst:200
407407
msgid ""
408408
"Removes the item with the index *i* from the array and returns it. The "
409409
"optional argument defaults to ``-1``, so that by default the last item is "
@@ -412,15 +412,15 @@ msgstr ""
412412
"アレイからインデクスが *i* の要素を取り除いて返します。オプションの引数はデフォルトで ``-1`` "
413413
"になっていて、最後の要素を取り除いて返すようになっています。"
414414

415-
#: ../../library/array.rst:205
415+
#: ../../library/array.rst:207
416416
msgid "Remove the first occurrence of *x* from the array."
417417
msgstr "アレイ中の *x* のうち、最初に現れたものを取り除きます。"
418418

419-
#: ../../library/array.rst:210
419+
#: ../../library/array.rst:212
420420
msgid "Reverse the order of the items in the array."
421421
msgstr "アレイの要素の順番を逆にします。"
422422

423-
#: ../../library/array.rst:215
423+
#: ../../library/array.rst:217
424424
msgid ""
425425
"Convert the array to an array of machine values and return the bytes "
426426
"representation (the same sequence of bytes that would be written to a file "
@@ -429,23 +429,23 @@ msgstr ""
429429
"array をマシンの値の array に変換して、 bytes の形で返します (:meth:`tofile` "
430430
"メソッドを使ってファイルに書かれるバイト列と同じです)。"
431431

432-
#: ../../library/array.rst:219
432+
#: ../../library/array.rst:221
433433
msgid ":meth:`tostring` is renamed to :meth:`tobytes` for clarity."
434434
msgstr "明確化のため :meth:`tostring` の名前が :meth:`tobytes` に変更されました。"
435435

436-
#: ../../library/array.rst:225
436+
#: ../../library/array.rst:227
437437
msgid "Write all items (as machine values) to the :term:`file object` *f*."
438438
msgstr "すべての要素を (マシンの値の形式で) :term:`file object` *f* に書き込みます。"
439439

440-
#: ../../library/array.rst:230
440+
#: ../../library/array.rst:232
441441
msgid "Convert the array to an ordinary list with the same items."
442442
msgstr "アレイを同じ要素を持つ普通のリストに変換します。"
443443

444-
#: ../../library/array.rst:235
444+
#: ../../library/array.rst:237
445445
msgid "Deprecated alias for :meth:`tobytes`."
446446
msgstr ":meth:`tobytes` に対する廃止予定のエイリアス"
447447

448-
#: ../../library/array.rst:240
448+
#: ../../library/array.rst:244
449449
msgid ""
450450
"Convert the array to a unicode string. The array must be a type ``'u'`` "
451451
"array; otherwise a :exc:`ValueError` is raised. Use "
@@ -456,7 +456,7 @@ msgstr ""
456456
":exc:`ValueError` を送出します。他の型のアレイから Unicode 文字列を得るには、 "
457457
"``array.tobytes().decode(enc)`` を使ってください。"
458458

459-
#: ../../library/array.rst:245
459+
#: ../../library/array.rst:249
460460
msgid ""
461461
"When an array object is printed or converted to a string, it is represented "
462462
"as ``array(typecode, initializer)``. The *initializer* is omitted if the "
@@ -471,31 +471,31 @@ msgstr ""
471471
"アレイが空でなければ、 *typecode* が ``'u'`` の場合には文字列に、それ以外の場合には数値のリストになります。\n"
472472
":class:`~array.array` クラスが ``from array import array`` というふうにインポートされている限り、変換後の文字列に :func:`eval` を用いると元のアレイオブジェクトと同じデータ型と値を持つアレイに逆変換できることが保証されています。文字列表現の例を以下に示します::"
473473

474-
#: ../../library/array.rst:262
474+
#: ../../library/array.rst:266
475475
msgid "Module :mod:`struct`"
476476
msgstr ":mod:`struct` モジュール"
477477

478-
#: ../../library/array.rst:262
478+
#: ../../library/array.rst:266
479479
msgid "Packing and unpacking of heterogeneous binary data."
480480
msgstr "異なる種類のバイナリデータのパックおよびアンパック。"
481481

482-
#: ../../library/array.rst:266
482+
#: ../../library/array.rst:270
483483
msgid "Module :mod:`xdrlib`"
484484
msgstr ":mod:`xdrlib` モジュール"
485485

486-
#: ../../library/array.rst:265
486+
#: ../../library/array.rst:269
487487
msgid ""
488488
"Packing and unpacking of External Data Representation (XDR) data as used in "
489489
"some remote procedure call systems."
490490
msgstr ""
491491
"遠隔手続き呼び出しシステムで使われる外部データ表現仕様 (External Data Representation, XDR) "
492492
"のデータのパックおよびアンパック。"
493493

494-
#: ../../library/array.rst:269
494+
#: ../../library/array.rst:273
495495
msgid "`The Numerical Python Documentation <https://docs.scipy.org/doc/>`_"
496496
msgstr "`Numerical Python ドキュメント <https://docs.scipy.org/doc/>`_"
497497

498-
#: ../../library/array.rst:269
498+
#: ../../library/array.rst:273
499499
msgid ""
500500
"The Numeric Python extension (NumPy) defines another array type; see "
501501
"http://www.numpy.org/ for further information about Numerical Python."

library/datetime.po

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2376,6 +2376,8 @@ msgid ""
23762376
"<../includes/tzinfo_examples.py>` file there are some examples of "
23772377
":class:`tzinfo` classes:"
23782378
msgstr ""
2379+
"次の :download:`tzinfo_examples.py <../includes/tzinfo_examples.py>` ファイルには、 "
2380+
":class:`tzinfo` クラスの例がいくつか載っています:"
23792381

23802382
#: ../../library/datetime.rst:1865
23812383
msgid ""
@@ -2386,10 +2388,9 @@ msgid ""
23862388
" March, and ends the minute after 1:59 (EDT) on the first Sunday in "
23872389
"November::"
23882390
msgstr ""
2389-
"標準時間 (standard time) および夏時間 (daylight time) の両方を記述している :class:`tzinfo` "
2390-
"のサブクラスでは、回避不能の難解な問題が年に 2 度あるので注意してください。具体的な例として、東部アメリカ時刻 (US Eastern, UTC "
2391-
"-5000) を考えます。 EDT は 3 月の第二日曜日の 1:59 (EST) 以後に開始し、11 月の最初の日曜日の 1:59 (EDT) "
2392-
"に終了します::"
2391+
"標準時および夏時間の両方を記述している :class:`tzinfo` のサブクラスでは、夏時間の移行のときに、回避不能の難解な問題が年に 2 度あるので注意してください。\n"
2392+
"具体的な例として、東部アメリカ時刻 (US Eastern, UTC -0500) を考えます。\n"
2393+
"EDT は 3 月の第二日曜日の 1:59 (EST) の 1 分後に開始し、11 月の最初の日曜日の (EDTの) 1:59 に終了します::"
23932394

23942395
#: ../../library/datetime.rst:1879
23952396
msgid ""

0 commit comments

Comments
 (0)