Skip to content

Commit 41b2ed8

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 6bb62a6 commit 41b2ed8

File tree

4 files changed

+21
-15
lines changed

4 files changed

+21
-15
lines changed

library/functions.po

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ msgid ""
2323
msgstr ""
2424
"Project-Id-Version: Python 3.9\n"
2525
"Report-Msgid-Bugs-To: \n"
26-
"POT-Creation-Date: 2020-10-21 04:23+0000\n"
26+
"POT-Creation-Date: 2020-10-27 04:26+0000\n"
2727
"PO-Revision-Date: 2017-02-16 23:11+0000\n"
2828
"Last-Translator: mollinaca, 2020\n"
2929
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -454,9 +454,10 @@ msgstr "*整数* の場合、配列はそのサイズになり、null バイト
454454

455455
#: ../../library/functions.rst:153
456456
msgid ""
457-
"If it is an object conforming to the *buffer* interface, a read-only buffer "
458-
"of the object will be used to initialize the bytes array."
459-
msgstr "*バッファ* インタフェースに適合するオブジェクトの場合、そのオブジェクトの読み出し専用バッファがバイト配列の初期化に使われます。"
457+
"If it is an object conforming to the :ref:`buffer interface "
458+
"<bufferobjects>`, a read-only buffer of the object will be used to "
459+
"initialize the bytes array."
460+
msgstr ""
460461

461462
#: ../../library/functions.rst:156
462463
msgid ""

library/typing.po

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
# yudetamago <yudetamago.orz@gmail.com>, 2018
1212
# Tetsuo Koyama <tkoyama010@gmail.com>, 2020
1313
# tomo, 2020
14+
# mollinaca, 2020
1415
#
1516
#, fuzzy
1617
msgid ""
@@ -19,7 +20,7 @@ msgstr ""
1920
"Report-Msgid-Bugs-To: \n"
2021
"POT-Creation-Date: 2020-10-20 04:23+0000\n"
2122
"PO-Revision-Date: 2017-02-16 23:32+0000\n"
22-
"Last-Translator: tomo, 2020\n"
23+
"Last-Translator: mollinaca, 2020\n"
2324
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2425
"MIME-Version: 1.0\n"
2526
"Content-Type: text/plain; charset=UTF-8\n"
@@ -436,7 +437,7 @@ msgid ""
436437
" corresponding pre-existing classes were enhanced to support ``[]``."
437438
msgstr ""
438439
"このモジュールは、既存の標準ライブラリクラスのサブクラスかつ、 ``[]`` 内の型変数をサポートするために :class:`Generic` を拡張している、いくつかの型を定義しています。\n"
439-
"これらの型は、既存の相当するクラスが ``[]`` をサポートするように拡張たときに Python 3.9 で廃止になりました。"
440+
"これらの型は、既存の相当するクラスが ``[]`` をサポートするように拡張されたときに Python 3.9 で廃止になりました。"
440441

441442
#: ../../library/typing.rst:454
442443
msgid ""

reference/datamodel.po

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# 秘湯 <xwhhsprings@gmail.com>, 2019
1515
# tomo, 2020
1616
# yuhutuge, 2020
17+
# mollinaca, 2020
1718
#
1819
#, fuzzy
1920
msgid ""
@@ -22,7 +23,7 @@ msgstr ""
2223
"Report-Msgid-Bugs-To: \n"
2324
"POT-Creation-Date: 2020-10-22 04:25+0000\n"
2425
"PO-Revision-Date: 2017-02-16 23:38+0000\n"
25-
"Last-Translator: yuhutuge, 2020\n"
26+
"Last-Translator: mollinaca, 2020\n"
2627
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2728
"MIME-Version: 1.0\n"
2829
"Content-Type: text/plain; charset=UTF-8\n"
@@ -45,6 +46,9 @@ msgid ""
4546
"sense, and in conformance to Von Neumann's model of a \"stored program "
4647
"computer\", code is also represented by objects.)"
4748
msgstr ""
49+
"Python における :dfn:`オブジェクト (object)` とは、データを抽象的に表したものです。Python "
50+
"プログラムにおけるデータは全て、オブジェクトまたはオブジェクト間の関係として表されます。(ある意味では、プログラムコードもまたオブジェクトとして表されます。これはフォン・ノイマン:"
51+
" Von Neumann の \"プログラム記憶方式コンピュータ: stored program computer\" のモデルに適合します。)"
4852

4953
#: ../../reference/datamodel.rst:35
5054
msgid ""
@@ -485,9 +489,9 @@ msgid ""
485489
msgstr ""
486490
"文字列はUnicodeコードポイントを表現する値の配列です。文字列中のどのコードポイントも ``U+0000 - U+10FFFF`` "
487491
"の範囲で表現されることができます。Pythonは :c:type:`char` 型を持ちません。代わりに、文字列中のどのコードポイントも長さ ''1''"
488-
" の文字列オブジェクトとして表現することができます。組み込み関数 :func:`ord` は文字列形式を0 - "
489-
"10FFFFの範囲の整数に変換します。また、組み込み関数 :func:`chr` は ``0 - 10FFFF`` の範囲の整数を対応する長さ "
490-
"``1`` の文字列に変換します。:meth:`str.encode` はテキストエンコーディングを使うことで :class:`str` を "
492+
" の文字列オブジェクトとして表現することができます。組み込み関数 :func:`ord` は文字列形式を ``U+0000 - U+10FFFF`` "
493+
"の範囲の整数に変換します。また、組み込み関数 :func:`chr` は ``0 - 10FFFF`` の範囲の整数を対応する長さ ``1`` "
494+
"の文字列に変換します。:meth:`str.encode` はテキストエンコーディングを使うことで :class:`str` を "
491495
":class:`bytes` に変換するために使うことができます。また、:meth:`bytes.decode` によりその逆が実行することができます。"
492496

493497
#: ../../reference/datamodel.rst:341

tutorial/introduction.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# Osamu NAKAMURA, 2017
1313
# Atsuo Ishimoto <atsuoishimoto@gmail.com>, 2018
1414
# tomo, 2019
15-
# Tetsuo Koyama <tkoyama010@gmail.com>, 2019
15+
# mollinaca, 2020
1616
#
1717
#, fuzzy
1818
msgid ""
@@ -21,7 +21,7 @@ msgstr ""
2121
"Report-Msgid-Bugs-To: \n"
2222
"POT-Creation-Date: 2020-05-31 09:25+0000\n"
2323
"PO-Revision-Date: 2017-02-16 23:41+0000\n"
24-
"Last-Translator: Tetsuo Koyama <tkoyama010@gmail.com>, 2019\n"
24+
"Last-Translator: mollinaca, 2020\n"
2525
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2626
"MIME-Version: 1.0\n"
2727
"Content-Type: text/plain; charset=UTF-8\n"
@@ -412,16 +412,16 @@ msgid ""
412412
"Like strings (and all other built-in :term:`sequence` types), lists can be "
413413
"indexed and sliced::"
414414
msgstr ""
415-
"文字列 (や他の全ての組み込みの :term:` シーケンス <sequence>` 型) のように、リストはインデックスやスライスができます::"
415+
"文字列 (や他の全ての組み込みの :term:`シーケンス <sequence>` 型) のように、リストはインデックスやスライスができます::"
416416

417417
#: ../../tutorial/introduction.rst:396
418418
msgid ""
419419
"All slice operations return a new list containing the requested elements. "
420420
"This means that the following slice returns a :ref:`shallow copy "
421421
"<shallow_vs_deep_copy>` of the list::"
422422
msgstr ""
423-
"全てのスライス操作は、指定された要素を含む新しいリストを返します。例えば、次のスライスは、リストの :ref:`浅い "
424-
"<shallow_vs_deep_copy> のコピー` を返します。::"
423+
"全てのスライス操作は、指定された要素を含む新しいリストを返します。例えば、次のスライスは、リストの :ref: `浅い "
424+
"<shallow_vs_deep_copy> コピー` を返します。::"
425425

426426
#: ../../tutorial/introduction.rst:403
427427
msgid "Lists also support operations like concatenation::"

0 commit comments

Comments
 (0)