Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit57325d1

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent70611ca commit57325d1

18 files changed

+77
-31
lines changed

‎faq/programming.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2664,7 +2664,7 @@ msgid ""
26642664
"confusion with other objects that may have boolean values that evaluate to "
26652665
"false."
26662666
msgstr""
2667-
"1) :pep:`8` で推奨されるように、同一性テストは ``None`` のチェックの良い方法"
2667+
"1 :pep:`8` で推奨されるように、同一性テストは ``None`` のチェックの良い方法"
26682668
"です。 コードの中で平易な英語のように読めますし、 false と評価される真偽値を"
26692669
"持ちうる他のオブジェクトとの混同を避けます。"
26702670

@@ -2675,7 +2675,7 @@ msgid ""
26752675
"guaranteed to be distinct from other objects. For example, here is how to "
26762676
"implement a method that behaves like :meth:`dict.pop`::"
26772677
msgstr""
2678-
"2) ``None`` が有効な入力値である場合、省略された引数を検出にはコツがいりま"
2678+
"2 ``None`` が有効な入力値である場合、省略された引数を検出にはコツがいりま"
26792679
"す。 そのような状況では、他のオブジェクトと区別されることが保証されたシング"
26802680
"ルトンの番兵オブジェクトを作れます。 例えば、これは :meth:`dict.pop` のよう"
26812681
"に振る舞うメソッドを実装する方法です:"
@@ -2686,9 +2686,9 @@ msgid ""
26862686
"identity tests. This prevents the code from being confused by objects such "
26872687
"as ``float('NaN')`` that are not equal to themselves."
26882688
msgstr""
2689-
"3) コンテナの実装では、等価性テストを同一性テストで補強しないといけない場合が"
2690-
"あります。 これは、 ``float('NaN')``のような自分自身と等価でないオブジェク"
2691-
"トによってコードが混乱するのを防ぐためです。"
2689+
"3 コンテナの実装では、等価性テストを同一性テストで補強しないといけない場合"
2690+
"があります。 これは、 ``float('NaN')``のような自分自身と等価でないオブジェ"
2691+
"クトによってコードが混乱するのを防ぐためです。"
26922692

26932693
#:../../faq/programming.rst:1905
26942694
msgid""

‎library/asyncio-platforms.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version:Python 3.12\n"
1414
"Report-Msgid-Bugs-To:\n"
15-
"POT-Creation-Date:2023-12-08 14:14+0000\n"
15+
"POT-Creation-Date:2023-12-29 14:13+0000\n"
1616
"PO-Revision-Date:2021-06-28 00:55+0000\n"
1717
"Last-Translator:Takeshi Nakazato, 2022\n"
1818
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎library/collections.abc.po

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,16 @@
88
# tomo, 2022
99
# Takeshi Nakazato, 2022
1010
# souma987, 2023
11+
# TENMYO Masakazu, 2024
1112
#
1213
#,fuzzy
1314
msgid ""
1415
msgstr ""
1516
"Project-Id-Version:Python 3.12\n"
1617
"Report-Msgid-Bugs-To:\n"
17-
"POT-Creation-Date:2023-12-15 14:14+0000\n"
18+
"POT-Creation-Date:2023-12-29 14:13+0000\n"
1819
"PO-Revision-Date:2021-06-28 00:56+0000\n"
19-
"Last-Translator:souma987, 2023\n"
20+
"Last-Translator:TENMYO Masakazu, 2024\n"
2021
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"
2122
"ja/)\n"
2223
"MIME-Version:1.0\n"
@@ -60,7 +61,7 @@ msgid ""
6061
"remaining mixin methods come from inheritance and can be overridden if "
6162
"desired. Other methods may be added as needed:"
6263
msgstr""
63-
"1) 新しく定義したクラスは抽象基底クラスのいずれかを直接継承することができま"
64+
"1 新しく定義したクラスは抽象基底クラスのいずれかを直接継承することができま"
6465
"す。その場合クラスは必要な抽象メソッドを提供しなければなりません。残りのミッ"
6566
"クスインメソッドは継承により引き継がれますが、必要ならオーバーライドすること"
6667
"ができます。その他のメソッドは必要に応じて追加することができます:"
@@ -74,7 +75,7 @@ msgid ""
7475
"determine whether the full interface is supported. The exception to this "
7576
"rule is for methods that are automatically inferred from the rest of the API:"
7677
msgstr""
77-
"2) 既存のクラスや組み込みのクラスを\"仮想派生クラス\" として ABC に登録する"
78+
"2 既存のクラスや組み込みのクラスを\"仮想派生クラス\" として ABC に登録する"
7879
"ことができます。これらのクラスは、全ての抽象メソッドとミックスインメソッドを"
7980
"含む完全な API を定義する必要があります。これにより、そのクラスが完全なイン"
8081
"ターフェースをサポートしているかどうかを、ユーザーが :func:`issubclass` や :"
@@ -95,8 +96,8 @@ msgid ""
9596
"3) Some simple interfaces are directly recognizable by the presence of the "
9697
"required methods (unless those methods have been set to :const:`None`):"
9798
msgstr""
98-
"3) いくつかの単純なインターフェースは、必要なメソッドの存在だけで (それらのメ"
99-
"ソッドが :const:`None` に設定されていなければ) 直接認識されます:"
99+
"3 いくつかの単純なインターフェースは、必要なメソッドの存在だけで (それらの"
100+
"メソッドが :const:`None` に設定されていなければ) 直接認識されます:"
100101

101102
#:../../library/collections.abc.rst:99
102103
msgid""

‎library/errno.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version:Python 3.12\n"
1414
"Report-Msgid-Bugs-To:\n"
15-
"POT-Creation-Date:2023-12-08 14:14+0000\n"
15+
"POT-Creation-Date:2023-12-29 14:13+0000\n"
1616
"PO-Revision-Date:2021-06-28 01:05+0000\n"
1717
"Last-Translator:Arihiro TAKASE, 2023\n"
1818
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎library/ftplib.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version:Python 3.12\n"
1717
"Report-Msgid-Bugs-To:\n"
18-
"POT-Creation-Date:2023-12-08 14:14+0000\n"
18+
"POT-Creation-Date:2023-12-29 14:13+0000\n"
1919
"PO-Revision-Date:2021-06-28 01:06+0000\n"
2020
"Last-Translator:Arihiro TAKASE, 2023\n"
2121
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎library/functions.po

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1608,7 +1608,7 @@ msgid ""
16081608
"For objects with custom :meth:`~object.__hash__` methods, note that :func:"
16091609
"`hash` truncates the return value based on the bit width of the host machine."
16101610
msgstr""
1611-
"独自の :meth:``~object.__hash__` メソッドを実装したオブジェクトを使う場合、:"
1611+
"独自の :meth:`~object.__hash__` メソッドを実装したオブジェクトを使う場合、:"
16121612
"func:`hash` が実行するマシンのビット幅に合わせて戻り値を切り捨てることに注意"
16131613
"してください。"
16141614

@@ -2867,6 +2867,14 @@ msgid ""
28672867
"method. If :func:`sys.displayhook` is not accessible, this function will "
28682868
"raise :exc:`RuntimeError`."
28692869
msgstr""
2870+
"オブジェクトの印字可能な表現を含む文字列を返します。この関数は多くの型につい"
2871+
"て、 :func:`eval` に渡されたときと同じ値を持つようなオブジェクトを表す文字列"
2872+
"を生成しようとします。そうでない場合は、山括弧に囲まれたオブジェクトの型の名"
2873+
"前と追加の情報 (大抵の場合はオブジェクトの名前とアドレスを含みます) を返しま"
2874+
"す。クラスは、 :meth:`~object.__repr__` メソッドを定義することで、この関数に"
2875+
"よりそのクラスのインスタンスが返すものを制御することができます。:func:`sys."
2876+
"displayhook` にアクセスできない場合、この関数は :exc:`RuntimeError` を送出し"
2877+
"ます。"
28702878

28712879
#:../../library/functions.rst:1576
28722880
msgid""
@@ -2875,6 +2883,11 @@ msgid ""
28752883
"meth:`~object.__len__` method and the :meth:`~object.__getitem__` method "
28762884
"with integer arguments starting at ``0``)."
28772885
msgstr""
2886+
"要素を逆順に取り出すイテレータ (reverse :term:`iterator`) を返します。 *seq* "
2887+
"は :meth:`~object.__reversed__` メソッドを持つか、シーケンス型プロトコル ( :"
2888+
"meth:`~object.__len__` メソッド、および、 ``0`` 以上の整数を引数とする :meth:"
2889+
"`~object.__getitem__` メソッド) をサポートするオブジェクトでなければなりませ"
2890+
"ん。"
28782891

28792892
#:../../library/functions.rst:1584
28802893
msgid""
@@ -2988,6 +3001,9 @@ msgid ""
29883001
"``range(start, stop, step)``. The *start* and *step* arguments default to "
29893002
"``None``."
29903003
msgstr""
3004+
"``range(start, stop, step)`` で指定されたインデックスのセットを表す :term:"
3005+
"`slice` オブジェクトを返します。 引数 *start* と *step* のデフォルトは "
3006+
"``None`` です。"
29913007

29923008
#:../../library/functions.rst:1656
29933009
msgid""
@@ -2996,13 +3012,20 @@ msgid ""
29963012
"default). They have no other explicit functionality; however, they are used "
29973013
"by NumPy and other third-party packages."
29983014
msgstr""
3015+
"スライスオブジェクトには読み出し専用のデータ属性 :attr:`!start` :attr:`!"
3016+
"stop` :attr:`!step` があり、これらは単に引数の値(またはそのデフォルト値)を"
3017+
"返します。 スライスオブジェクトは特に他の機能を持ちませんが、 NumPy や他の"
3018+
"サードパーティパッケージで使われています。"
29993019

30003020
#:../../library/functions.rst:1661
30013021
msgid""
30023022
"Slice objects are also generated when extended indexing syntax is used. For "
30033023
"example: ``a[start:stop:step]`` or ``a[start:stop, i]``. See :func:"
30043024
"`itertools.islice` for an alternate version that returns an :term:`iterator`."
30053025
msgstr""
3026+
"スライスオブジェクトは、拡張インデックス構文が使われた場合にも作られます。 "
3027+
"例: ``a[start:stop:step]`` や ``a[start:stop, i]`` 。 :term:`iterator` を返"
3028+
"す代替バージョンについては :func:`itertools.islice` を参照して下さい。"
30063029

30073030
#:../../library/functions.rst:1666
30083031
msgid""
@@ -3317,6 +3340,12 @@ msgid ""
33173340
"inheritance. Accordingly, :func:`super` is undefined for implicit lookups "
33183341
"using statements or operators such as ``super()[name]``."
33193342
msgstr""
3343+
"なお、:func:`super` は ``super().__getitem__(name)`` のような明示的なドット表"
3344+
"記属性探索の束縛処理の一部として実装されています。これは、 :meth:`~object."
3345+
"__getattribute__` メソッドを予測可能な順序でクラスを検索するように実装し、協"
3346+
"調的な多重継承をサポートすることで実現されています。従って、 :func:`super` は"
3347+
"文や ``super()[name]`` のような演算子を使った暗黙の探索向けには定義されていま"
3348+
"せん。"
33203349

33213350
#:../../library/functions.rst:1837
33223351
msgid""

‎library/gc.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version:Python 3.12\n"
1414
"Report-Msgid-Bugs-To:\n"
15-
"POT-Creation-Date:2023-12-08 14:14+0000\n"
15+
"POT-Creation-Date:2023-12-29 14:13+0000\n"
1616
"PO-Revision-Date:2021-06-28 01:06+0000\n"
1717
"Last-Translator:Arihiro TAKASE, 2023\n"
1818
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎library/idle.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version:Python 3.12\n"
1414
"Report-Msgid-Bugs-To:\n"
15-
"POT-Creation-Date:2023-12-08 14:14+0000\n"
15+
"POT-Creation-Date:2023-12-29 14:13+0000\n"
1616
"PO-Revision-Date:2021-06-28 01:07+0000\n"
1717
"Last-Translator:Arihiro TAKASE, 2023\n"
1818
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎library/imaplib.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version:Python 3.12\n"
1616
"Report-Msgid-Bugs-To:\n"
17-
"POT-Creation-Date:2023-12-08 14:14+0000\n"
17+
"POT-Creation-Date:2023-12-29 14:13+0000\n"
1818
"PO-Revision-Date:2021-06-28 01:07+0000\n"
1919
"Last-Translator:Masato HASHIMOTO <cabezon.hashimoto@gmail.com>, 2023\n"
2020
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎library/io.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ msgid ""
1818
msgstr ""
1919
"Project-Id-Version:Python 3.12\n"
2020
"Report-Msgid-Bugs-To:\n"
21-
"POT-Creation-Date:2023-12-08 14:14+0000\n"
21+
"POT-Creation-Date:2023-12-29 14:13+0000\n"
2222
"PO-Revision-Date:2021-06-28 01:08+0000\n"
2323
"Last-Translator:E. Kawashima, 2023\n"
2424
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎library/optparse.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version:Python 3.12\n"
1515
"Report-Msgid-Bugs-To:\n"
16-
"POT-Creation-Date:2023-12-08 14:14+0000\n"
16+
"POT-Creation-Date:2023-12-29 14:13+0000\n"
1717
"PO-Revision-Date:2021-06-28 01:10+0000\n"
1818
"Last-Translator:Arihiro TAKASE, 2023\n"
1919
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎library/pickle.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ msgid ""
2020
msgstr ""
2121
"Project-Id-Version:Python 3.12\n"
2222
"Report-Msgid-Bugs-To:\n"
23-
"POT-Creation-Date:2023-12-08 14:14+0000\n"
23+
"POT-Creation-Date:2023-12-29 14:13+0000\n"
2424
"PO-Revision-Date:2021-06-28 01:11+0000\n"
2525
"Last-Translator:Nozomu Kaneko <nozom.kaneko@gmail.com>, 2023\n"
2626
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎library/runpy.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version:Python 3.12\n"
1515
"Report-Msgid-Bugs-To:\n"
16-
"POT-Creation-Date:2023-12-08 14:14+0000\n"
16+
"POT-Creation-Date:2023-12-29 14:13+0000\n"
1717
"PO-Revision-Date:2021-06-28 01:12+0000\n"
1818
"Last-Translator:Arihiro TAKASE, 2023\n"
1919
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎library/smtplib.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ msgid ""
1616
msgstr ""
1717
"Project-Id-Version:Python 3.12\n"
1818
"Report-Msgid-Bugs-To:\n"
19-
"POT-Creation-Date:2023-12-08 14:14+0000\n"
19+
"POT-Creation-Date:2023-12-29 14:13+0000\n"
2020
"PO-Revision-Date:2021-06-28 01:13+0000\n"
2121
"Last-Translator:Tetsuo Koyama <tkoyama010@gmail.com>, 2023\n"
2222
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎library/unicodedata.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version:Python 3.12\n"
1616
"Report-Msgid-Bugs-To:\n"
17-
"POT-Creation-Date:2023-12-08 14:14+0000\n"
17+
"POT-Creation-Date:2023-12-29 14:13+0000\n"
1818
"PO-Revision-Date:2021-06-28 01:16+0000\n"
1919
"Last-Translator:Takanori Suzuki <takanori@takanory.net>, 2023\n"
2020
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎tutorial/datastructures.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version:Python 3.12\n"
1515
"Report-Msgid-Bugs-To:\n"
16-
"POT-Creation-Date:2023-12-08 14:14+0000\n"
16+
"POT-Creation-Date:2023-12-29 14:13+0000\n"
1717
"PO-Revision-Date:2021-06-28 01:50+0000\n"
1818
"Last-Translator:TENMYO Masakazu, 2023\n"
1919
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎tutorial/floatingpoint.po

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
# Translators:
77
# tomo, 2021
88
# Takanori Suzuki <takanori@takanory.net>, 2023
9-
# TENMYO Masakazu,2023
9+
# TENMYO Masakazu,2024
1010
#
1111
#,fuzzy
1212
msgid ""
1313
msgstr ""
1414
"Project-Id-Version:Python 3.12\n"
1515
"Report-Msgid-Bugs-To:\n"
16-
"POT-Creation-Date:2023-12-22 14:13+0000\n"
16+
"POT-Creation-Date:2023-12-29 14:13+0000\n"
1717
"PO-Revision-Date:2021-06-28 01:50+0000\n"
18-
"Last-Translator:TENMYO Masakazu,2023\n"
18+
"Last-Translator:TENMYO Masakazu,2024\n"
1919
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"
2020
"ja/)\n"
2121
"MIME-Version:1.0\n"
@@ -234,6 +234,13 @@ msgid ""
234234
"Point <http://www.indowsway.com/floatingpoint.htm>`_ for a more complete "
235235
"account of other common surprises."
236236
msgstr""
237+
"このように2進数の浮動小数点の演算には多くの驚きがあります。「0.1」の問題につ"
238+
"いて詳しい説明は、「表現エラー」セクションで行います。2進数の浮動小数点の仕組"
239+
"みと、実際によく遭遇する問題各種についての分かりやすい概要は、 `Examples of "
240+
"Floating Point Problems <https://jvns.ca/blog/2023/01/13/examples-of-"
241+
"floating-point-problems/>`_ を参照してください。その他よくある驚きの より詳細"
242+
"な説明は `The Perils of Floating Point <http://www.indowsway.com/"
243+
"floatingpoint.htm>`_ も参照してください。"
237244

238245
#:../../tutorial/floatingpoint.rst:156
239246
msgid""

‎tutorial/modules.po

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88
# Arihiro TAKASE, 2023
99
# Masato HASHIMOTO <cabezon.hashimoto@gmail.com>, 2023
1010
# tomo, 2023
11-
# TENMYO Masakazu,2023
11+
# TENMYO Masakazu,2024
1212
#
1313
#,fuzzy
1414
msgid ""
1515
msgstr ""
1616
"Project-Id-Version:Python 3.12\n"
1717
"Report-Msgid-Bugs-To:\n"
18-
"POT-Creation-Date:2023-12-22 14:13+0000\n"
18+
"POT-Creation-Date:2023-12-29 14:13+0000\n"
1919
"PO-Revision-Date:2021-06-28 01:50+0000\n"
20-
"Last-Translator:TENMYO Masakazu,2023\n"
20+
"Last-Translator:TENMYO Masakazu,2024\n"
2121
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"
2222
"ja/)\n"
2323
"MIME-Version:1.0\n"
@@ -593,6 +593,15 @@ msgid ""
593593
"can just be an empty file, but it can also execute initialization code for "
594594
"the package or set the ``__all__`` variable, described later."
595595
msgstr""
596+
"ファイルを含むディレクトリをパッケージとしてPython に扱わせるには、ファイル :"
597+
"file:`__init__.py` が必要です(より高度な機能 :term:`namespace package` を使う"
598+
"場合を除く)。\n"
599+
"これにより、 ``string`` のようなよくある名前のディレクトリにより、モジュール"
600+
"検索パスの後の方で見つかる正しいモジュールが意図せず隠蔽されてしまうのを防ぐ"
601+
"ためです。\n"
602+
"最も簡単なケースでは :file:`__init__.py` はただの空ファイルで構いませんが、 :"
603+
"file:`__init__.py` ではパッケージのための初期化コードを実行したり、後述の "
604+
"``__all__`` 変数を設定してもかまいません。"
596605

597606
#:../../tutorial/modules.rst:447
598607
msgid""

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp