@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.14\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2026-02-19 14:43 +0000\n "
15+ "POT-Creation-Date : 2026-02-25 14:44 +0000\n "
1616"PO-Revision-Date : 2025-09-16 00:00+0000\n "
1717"Last-Translator : TENMYO Masakazu, 2026\n "
1818"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
@@ -164,12 +164,12 @@ msgid ""
164164"Many numbers that can be written easily in decimal notation cannot be "
165165"expressed exactly in binary floating point. For example, after::"
166166msgstr ""
167- "10 進数表記で簡単に表せる数値でも 、その多くは 2 進浮動小数点数で正確に表現で "
168- "きません 。 次に例を挙げます ::"
167+ "10 進数表記 (decimal) で簡単に表せる数値でも 、その多くは 2 進浮動小数点数 "
168+ "(binary) で正確に表現できません 。 たとえば次では ::"
169169
170170#: ../../faq/design.rst:75
171171msgid ">>> x = 1.2"
172- msgstr ""
172+ msgstr ">>> x = 1.2 "
173173
174174#: ../../faq/design.rst:77
175175msgid ""
@@ -183,29 +183,31 @@ msgstr ""
183183
184184#: ../../faq/design.rst:81
185185msgid "1.0011001100110011001100110011001100110011001100110011 (binary)"
186- msgstr ""
186+ msgstr "1.0011001100110011001100110011001100110011001100110011 (binary) "
187187
188188#: ../../faq/design.rst:83
189189msgid "which is exactly::"
190190msgstr "で、正確には次の値です::"
191191
192192#: ../../faq/design.rst:85
193193msgid "1.1999999999999999555910790149937383830547332763671875 (decimal)"
194- msgstr ""
194+ msgstr "1.1999999999999999555910790149937383830547332763671875 (decimal) "
195195
196196#: ../../faq/design.rst:87
197197msgid ""
198198"The typical precision of 53 bits provides Python floats with 15--16 decimal "
199199"digits of accuracy."
200200msgstr ""
201- "53bit の典型的な精度は 、Python の float に 10 進数で 15〜16桁の精度を与えま "
202- "す 。"
201+ "典型的な 53bit 精度は 、Python の float に 10 進数での 15〜16 桁の正確さを与え "
202+ "ます 。"
203203
204204#: ../../faq/design.rst:90
205205msgid ""
206206"For a fuller explanation, please see the :ref:`floating-point arithmetic "
207207"<tut-fp-issues>` chapter in the Python tutorial."
208208msgstr ""
209+ "詳しくは、Python チュートリアルの :ref:`floating-point arithmetic <tut-fp-"
210+ "issues>` の章を参照してください。"
209211
210212#: ../../faq/design.rst:95
211213msgid "Why are Python strings immutable?"
@@ -340,6 +342,8 @@ msgid ""
340342"while chunk := fp.read(200):\n"
341343" print(chunk)"
342344msgstr ""
345+ "while chunk := fp.read(200):\n"
346+ " print(chunk)"
343347
344348#: ../../faq/design.rst:164
345349msgid "See :pep:`572` for more information."
@@ -365,7 +369,7 @@ msgid ""
365369"problem. Compare the easy with which we rewrite a formula like x*(a+b) into "
366370"x*a + x*b to the clumsiness of doing the same thing using a raw OO notation."
367371msgstr ""
368- "(a) 幾つかの演算では、接頭辞は接尾辞よりも単純に読みやすいからです。接頭辞"
372+ "(a) 幾つかの演算では、接頭辞は接尾辞よりも単純に読みやすいからです。接頭辞"
369373"(そして接中辞!)による演算は数学において長い歴史があり、そこでは課題に対す"
370374"る数学者の思考を視覚的に助けるような記法が好まれます。x*(a+b)をx*a + x*bに書"
371375"き換える容易さと、それと同じことを純粋なオブジェクト指向の記法で行う煩わしさ"
@@ -382,13 +386,14 @@ msgid ""
382386"mapping has a get() or keys() method, or something that isn't a file has a "
383387"write() method."
384388msgstr ""
385- "(b) len(x)というコードを読んだ時、私はそれが何かの長さを問うているのだなと知"
386- "ることができます。これは私に2つの事を知らせています。一つは結果が整数であるこ"
387- "と、そして引数は何らかのコンテナであることです。対して、x.len()を目にした場"
388- "合、私はその時点でxが何らかのコンテナであり、それが標準のlen()を持っているク"
389- "ラスを継承しているか、インターフェースを実装していることを知っている必要があ"
390- "ります。mappingを実装していないクラスがget()やkeys()メソッドを持っていたり、"
391- "fileでない何かがwrite()メソッドを持っているような混乱は時折見かけます。"
389+ "(b) len(x) というコードを読んだ時、私はそれが何かの長さを問うているのだなと"
390+ "知ることができます。これは私に2つの事を知らせています。一つは結果が整数である"
391+ "こと、そして引数は何らかのコンテナであることです。対して、 x.len() を目にした"
392+ "場合、私はその時点でxが何らかのコンテナであり、それが標準のlen()を持っている"
393+ "クラスを継承しているか、インターフェースを実装していることを知っている必要が"
394+ "あります。 mapping を実装していないクラスが get() や keys() メソッドを持って"
395+ "いたり、 file でない何かが write() メソッドを持っているような混乱は時折見かけ"
396+ "ます。"
392397
393398#: ../../faq/design.rst:189
394399msgid "https://mail.python.org/pipermail/python-3000/2006-November/004643.html"
0 commit comments