Skip to content

Commit 8b57927

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 381a882 commit 8b57927

File tree

8 files changed

+77
-12
lines changed

8 files changed

+77
-12
lines changed

library/logging.po

+1-1
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-09-22 14:13+0000\n"
19+
"POT-Creation-Date: 2023-10-06 14:14+0000\n"
2020
"PO-Revision-Date: 2021-06-28 01:09+0000\n"
2121
"Last-Translator: tomo, 2023\n"
2222
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

library/statistics.po

+4
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,10 @@ msgid ""
307307
"a more robust, although less efficient, measure of `central tendency "
308308
"<https://en.wikipedia.org/wiki/Central_tendency>`_, see :func:`median`."
309309
msgstr ""
310+
"mean は `外れ値 <https://ja.wikipedia.org/wiki/外れ値>`_ の影響を強く受け、必"
311+
"ずしもデータ点の典型例とはなりません。効率が悪いものの、より堅牢な、 中心的な"
312+
"傾向 (`central tendency <https://en.wikipedia.org/wiki/Central_tendency>`_) "
313+
"の尺度については、 :func:`median` を参照してください。"
310314

311315
#: ../../library/statistics.rst:155
312316
msgid ""

library/venv.po

+1-1
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-09-22 14:13+0000\n"
18+
"POT-Creation-Date: 2023-10-06 14:14+0000\n"
1919
"PO-Revision-Date: 2021-06-28 01:17+0000\n"
2020
"Last-Translator: Arihiro TAKASE, 2023\n"
2121
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

library/zipfile.po

+15
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,21 @@ msgid ""
229229
"``'a'`` and the file does not exist at all, it is created. If *mode* is "
230230
"``'r'`` or ``'a'``, the file should be seekable."
231231
msgstr ""
232+
"*mode* パラメータには、既存のファイルを読み込む場合は ``'r'`` 、内容を消去し"
233+
"て新しいファイルに書き込む場合は ``'w'`` 、既存のファイルの末尾に追加する場"
234+
"合は ``'a'`` 、ファイルが存在しない場合にのみファイルを作成して書き込む場合"
235+
"は ``'x'`` を指定します。\n"
236+
"*mode* が ``'x'`` で *file* が既存のファイルを指している場合、 :exc:"
237+
"`FileExistsError` が発生します。\n"
238+
"*mode* が ``'a'`` で *file* が既存の ZIP ファイルを指している場合、新しい "
239+
"ZIP アーカイブがそのファイルに追加されます。\n"
240+
"*file* が ZIP ファイルでない場合は、ファイルの末尾にあたらしい ZIP アーカイブ"
241+
"が追加されます。\n"
242+
"これは、既存のファイル (例えば :file:`python.exe`) に ZIP アーカイブを付け加"
243+
"える用途を想定したものです。\n"
244+
"*mode* が ``'a'`` で *file* が存在しない場合は、ファイルが作成されます。\n"
245+
"*mode* が ``'r'`` か ``'a'`` の場合、ファイルはシーク可能である必要がありま"
246+
"す。"
232247

233248
#: ../../library/zipfile.rst:161
234249
msgid ""

reference/compound_stmts.po

+19-5
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-09-29 14:12+0000\n"
23+
"POT-Creation-Date: 2023-10-06 14:14+0000\n"
2424
"PO-Revision-Date: 2021-06-28 01:19+0000\n"
2525
"Last-Translator: righteous righteous, 2023\n"
2626
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -752,9 +752,9 @@ msgstr ""
752752
"マッチ成功・失敗の具体的なルールは後述します。\n"
753753
"マッチングのチェックにより、パターン内の名前の一部あるいはすべてに値が束縛さ"
754754
"れます。\n"
755-
"具体的な束縛ルールはパターンの種類によって異なるため、後述します。 **成功した"
756-
"マッチで束縛された名前は、そのブロックの実行後も存続し、 match 文の後も使用す"
757-
"ることができます**。"
755+
"具体的な束縛ルールはパターンの種類によって異なるため、後述します。\n"
756+
"**マッチが成功したパターンの中で束縛された名前は、そのパターンのブロック内だ"
757+
"けでなく、 match 文の後でも使用することができます**。"
758758

759759
#: ../../reference/compound_stmts.rst:647
760760
msgid ""
@@ -764,26 +764,40 @@ msgid ""
764764
"dependent on implementation and may vary. This is an intentional decision "
765765
"made to allow different implementations to add optimizations."
766766
msgstr ""
767+
"パターンマッチが全体として失敗しても、その中に含まれるサブパターンが成功する"
768+
"可能性があります。\n"
769+
"失敗したマッチで発生する名前束縛を前提としたコードを書かないように気をつけて"
770+
"ください。\n"
771+
"逆に、マッチが失敗したあとで変数の値が変わっていないというのも前提にしないで"
772+
"ください。\n"
773+
"実際どういう振る舞いになるかは Python の実装依存であり、実装間で異なる可能性"
774+
"があります。\n"
775+
"色々な実装が最適化を行えるよう、意図的に実装依存としています。"
767776

768777
#: ../../reference/compound_stmts.rst:654
769778
msgid ""
770779
"If the pattern succeeds, the corresponding guard (if present) is evaluated. "
771780
"In this case all name bindings are guaranteed to have happened."
772781
msgstr ""
782+
"パターンが成功した場合、該当のガードが (もしあれば) 評価されます。\n"
783+
"この場合、パターン内の名前がすべて束縛されていることが保証されています。"
773784

774785
#: ../../reference/compound_stmts.rst:657
775786
msgid ""
776787
"If the guard evaluates as true or is missing, the ``block`` inside "
777788
"``case_block`` is executed."
778789
msgstr ""
790+
"ガードの評価値が真であるか、もしくはガードがなければ、 ``case_block`` 内の "
791+
"``block`` が実行されます。"
779792

780793
#: ../../reference/compound_stmts.rst:660
781794
msgid "Otherwise, the next ``case_block`` is attempted as described above."
782795
msgstr ""
796+
"そうでなければ、次の ``case_block`` に対して再び上記の処理が実行されます。"
783797

784798
#: ../../reference/compound_stmts.rst:662
785799
msgid "If there are no further case blocks, the match statement is completed."
786-
msgstr ""
800+
msgstr "これ以上 case block が存在しない場合は、 match 文が終了します。"
787801

788802
#: ../../reference/compound_stmts.rst:666
789803
msgid ""

tutorial/errors.po

+9-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,16 @@
88
# Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2021
99
# Arihiro TAKASE, 2023
1010
# Takanori Suzuki <takanori@takanory.net>, 2023
11+
# TENMYO Masakazu, 2023
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-09-29 14:12+0000\n"
18+
"POT-Creation-Date: 2023-10-06 14:14+0000\n"
1819
"PO-Revision-Date: 2021-06-28 01:50+0000\n"
19-
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2023\n"
20+
"Last-Translator: TENMYO Masakazu, 2023\n"
2021
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
2122
"ja/)\n"
2223
"MIME-Version: 1.0\n"
@@ -251,12 +252,18 @@ msgid ""
251252
"types define :meth:`~object.__str__` to print all the arguments without "
252253
"explicitly accessing ``.args``. ::"
253254
msgstr ""
255+
"except節は例外名の後に変数を指定できます。その変数は例外インスタンスに紐付け"
256+
"られ、一般的には引数を保持する ``args`` 属性を持ちます。利便性のため、組み込"
257+
"み例外型には :meth:`~object.__str__` が定義されており、明示的に ``.args`` を"
258+
"参照せずとも すべての引数を表示できます。"
254259

255260
#: ../../tutorial/errors.rst:177
256261
msgid ""
257262
"The exception's :meth:`~object.__str__` output is printed as the last part "
258263
"('detail') of the message for unhandled exceptions."
259264
msgstr ""
265+
"例外の :meth:`~object.__str__` 出力は、処理されない例外のメッセージ末尾 ('詳"
266+
"細') として表示されます。"
260267

261268
#: ../../tutorial/errors.rst:180
262269
msgid ""

tutorial/floatingpoint.po

+27-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# Translators:
77
# tomo, 2021
88
# Takanori Suzuki <takanori@takanory.net>, 2023
9+
# TENMYO Masakazu, 2023
910
#
1011
#, fuzzy
1112
msgid ""
@@ -14,7 +15,7 @@ msgstr ""
1415
"Report-Msgid-Bugs-To: \n"
1516
"POT-Creation-Date: 2023-10-06 14:14+0000\n"
1617
"PO-Revision-Date: 2021-06-28 01:50+0000\n"
17-
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2023\n"
18+
"Last-Translator: TENMYO Masakazu, 2023\n"
1819
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
1920
"ja/)\n"
2021
"MIME-Version: 1.0\n"
@@ -213,12 +214,14 @@ msgid ""
213214
"Though the numbers cannot be made closer to their intended exact values, "
214215
"the :func:`math.isclose` function can be useful for comparing inexact values:"
215216
msgstr ""
217+
"数値を意図した正確な値に近づけることはできませんが、 :func:`math.isclose` 関"
218+
"数は不正確な値を比べるのに便利です: "
216219

217220
#: ../../tutorial/floatingpoint.rst:139
218221
msgid ""
219222
"Alternatively, the :func:`round` function can be used to compare rough "
220223
"approximations::"
221-
msgstr ""
224+
msgstr "あるいは、 :func:`round` 関数を粗い近似値比較に使うこともできます::"
222225

223226
#: ../../tutorial/floatingpoint.rst:147
224227
msgid ""
@@ -231,6 +234,13 @@ msgid ""
231234
"Point <https://www.lahey.com/float.htm>`_ for a more complete account of "
232235
"other common surprises."
233236
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 <https://www.lahey.com/float.htm>`_ も"
243+
"参照してください。"
234244

235245
#: ../../tutorial/floatingpoint.rst:156
236246
msgid ""
@@ -344,6 +354,10 @@ msgid ""
344354
"difference in overall accuracy so that the errors do not accumulate to the "
345355
"point where they affect the final total:"
346356
msgstr ""
357+
"別の便利なツールとして、合計処理における精度のロスを緩和してくれる :func:"
358+
"`sum` 関数があります。これは累計加算中の丸めに拡張精度を使います。これによ"
359+
"り、誤差が最終的な合計値に影響を与えるまで蓄積されなくなり、結果が改善されま"
360+
"す:"
347361

348362
#: ../../tutorial/floatingpoint.rst:233
349363
msgid ""
@@ -353,6 +367,10 @@ msgid ""
353367
"in uncommon cases where large magnitude inputs mostly cancel each other out "
354368
"leaving a final sum near zero:"
355369
msgstr ""
370+
":func:`math.fsum()` はさらに進んで、累計の加算時に「失われた桁」をすべて追跡"
371+
"し、結果の丸めは一度だけです。これは :func:`sum` より遅いものの、大きな入力が"
372+
"ほとんど相殺され、最終的な合計がゼロに近くなるような珍しいケースでは、より正"
373+
"確です:"
356374

357375
#: ../../tutorial/floatingpoint.rst:260
358376
msgid "Representation Error"
@@ -391,6 +409,13 @@ msgid ""
391409
"fraction it can of the form *J*/2**\\ *N* where *J* is an integer containing "
392410
"exactly 53 bits. Rewriting ::"
393411
msgstr ""
412+
"なぜそうなるのでしょう? 1/10 は2進法の小数で厳密に表現できません。少なくと"
413+
"も2000年以降、ほぼすべてのマシンは IEEE 754 2進数の浮動小数点演算を用いてお"
414+
"り、ほぼすべてのプラットフォームでは Python の浮動小数点を IEEE 754 binary64 "
415+
"\"倍精度 (double precision)\" 値に対応付けます。 IEEE 754 binary64 値は 53 "
416+
"ビットの精度を持つため、計算機に入力を行おうとすると、可能な限り 0.1 を最も近"
417+
"い値の分数に変換し、*J*/2**\\ *N* の形式にしようと努力します。*J* はちょうど "
418+
"53 ビットの精度の整数です。 ::"
394419

395420
#: ../../tutorial/floatingpoint.rst:282
396421
msgid "as ::"

using/unix.po

+1-1
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-09-22 14:13+0000\n"
15+
"POT-Creation-Date: 2023-10-06 14:14+0000\n"
1616
"PO-Revision-Date: 2021-06-28 01:51+0000\n"
1717
"Last-Translator: Arihiro TAKASE, 2023\n"
1818
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

0 commit comments

Comments
 (0)