55#
66# Translators:
77# python-doc bot, 2025
8+ # TENMYO Masakazu, 2026
89#
910#, fuzzy
1011msgid ""
1112msgstr ""
1213"Project-Id-Version : Python 3.14\n "
1314"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2026-02-05 14:39 +0000\n "
15+ "POT-Creation-Date : 2026-02-19 14:43 +0000\n "
1516"PO-Revision-Date : 2025-09-16 00:00+0000\n "
16- "Last-Translator : python-doc bot, 2025 \n "
17+ "Last-Translator : TENMYO Masakazu, 2026 \n "
1718"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
1819"ja/)\n "
1920"MIME-Version : 1.0\n "
@@ -60,6 +61,10 @@ msgid ""
6061" y--;\n"
6162"z++;"
6263msgstr ""
64+ "if (x <= y)\n"
65+ " x++;\n"
66+ " y--;\n"
67+ "z++;"
6368
6469#: ../../faq/design.rst:26
6570msgid ""
@@ -125,16 +130,18 @@ msgid ""
125130">>> 1.2 - 1.0\n"
126131"0.19999999999999996"
127132msgstr ""
133+ ">>> 1.2 - 1.0\n"
134+ "0.19999999999999996"
128135
129136#: ../../faq/design.rst:61
130137msgid ""
131138"and think it is a bug in Python. It's not. This has little to do with "
132139"Python, and much more to do with how the underlying platform handles "
133140"floating-point numbers."
134141msgstr ""
135- "そしてこれが Python のバグだと考えます。が、これはバグではありません。この結 "
136- "果に Python はほとんど関与しておらず、むしろ基底のプラットフォームによる浮動 "
137- "小数点数の扱い方が関与しています 。"
142+ "Python のバグと考えるかもしれませんが、そうではありません。 この結果に "
143+ "Python はほとんど影響しておらず、むしろ大きく関係しているのは下敷きとしている "
144+ "プラットフォームによる浮動小数点数の扱い方です 。"
138145
139146#: ../../faq/design.rst:65
140147msgid ""
@@ -145,17 +152,20 @@ msgid ""
145152"point operations. This means that as far as floating-point operations are "
146153"concerned, Python behaves like many popular languages including C and Java."
147154msgstr ""
148- "CPython における :class:`float` 型は記憶に C 言語の ``double`` 型を使いま"
149- "す。 :class:`float` オブジェクトの値は固定精度 (典型的には 53 bit) の 2 進浮"
150- "動小数点数として格納され、 Python はプロセッサのハードウェアが実装している C "
151- "言語上の演算を使います。つまり、浮動小数点数に関して Python は C 言語や Java "
152- "のような多くの一般的な言語と同じように振る舞います。"
155+ "CPython における :class:`float` 型は C 言語の ``double`` 型をデータ格納先に使"
156+ "います。 :class:`float` オブジェクトの値は固定精度 (典型的には 53 bit) の 2 "
157+ "進浮動小数点数で格納されます。 そして Python は浮動小数点演算を行うために C "
158+ "の演算を使いますが、これはプロセッサのハードウェア実装に依存します。つまり、"
159+ "浮動小数点数に関して Python は C 言語や Java を含む多くの一般的な言語と同じよ"
160+ "うに振る舞います。"
153161
154162#: ../../faq/design.rst:72
155163msgid ""
156164"Many numbers that can be written easily in decimal notation cannot be "
157165"expressed exactly in binary floating point. For example, after::"
158166msgstr ""
167+ "10 進数表記で簡単に表せる数値でも、その多くは 2 進浮動小数点数で正確に表現で"
168+ "きません。 次に例を挙げます::"
159169
160170#: ../../faq/design.rst:75
161171msgid ">>> x = 1.2"
0 commit comments