@@ -17,7 +17,7 @@ msgid ""
17
17
msgstr ""
18
18
"Project-Id-Version : Python 3.13\n "
19
19
"Report-Msgid-Bugs-To : \n "
20
- "POT-Creation-Date : 2024-09-13 14:16 +0000\n "
20
+ "POT-Creation-Date : 2024-09-20 14:17 +0000\n "
21
21
"PO-Revision-Date : 2021-06-28 01:14+0000\n "
22
22
"Last-Translator : Takeshi Nakazato, 2024\n "
23
23
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
@@ -931,6 +931,12 @@ msgid ""
931
931
"Decimal`. If no digits follow the decimal point, the decimal point is also "
932
932
"removed unless the ``#`` option is used."
933
933
msgstr ""
934
+ "科学的表記です。与えられた精度 ``p`` に対して、科学的表記では係数と指数を区切"
935
+ "り文字 'e' で分けて表します。係数部分は小数点の前に1桁、小数点の後に ``p`` "
936
+ "桁、合計 ``p + 1`` 桁の有効桁数を持ちます。 精度が指定されない場合、 :class:"
937
+ "`float` では小数点以下 ``6`` 桁の精度が使われ、いっぽう :class:`~decimal."
938
+ "Decimal` では係数部全てが表示されます。小数点以下の桁がない場合、 ``#`` オプ"
939
+ "ションが使われた場合をのぞき、小数点は除去されます。"
934
940
935
941
#: ../../library/string.rst:516
936
942
msgid "``'E'``"
@@ -956,6 +962,11 @@ msgid ""
956
962
"decimal point, the decimal point is also removed unless the ``#`` option is "
957
963
"used."
958
964
msgstr ""
965
+ "固定小数点表記です。与えられた精度 ``p`` に対して、小数点以下 ``p`` 桁で数値"
966
+ "を表します。精度が指定されない場合、 :class:`float` では ``6`` 桁の精度が使わ"
967
+ "れ、いっぽう :class:`~decimal.Decimal` では数値全体を表示するのに十分な精度が"
968
+ "使われます。小数点以下の桁がない場合、 ``#`` オプションが使われた場合をのぞ"
969
+ "き、小数点は除去されます。"
959
970
960
971
#: ../../library/string.rst:529
961
972
msgid "``'F'``"
@@ -980,6 +991,9 @@ msgid ""
980
991
"format or in scientific notation, depending on its magnitude. A precision of "
981
992
"``0`` is treated as equivalent to a precision of ``1``."
982
993
msgstr ""
994
+ "汎用表記です。与えられた精度 ``p >= 1`` に対して、この表記では数値を有効桁数 "
995
+ "``p`` に丸めた上で、数値の大きさに応じて固定小数点表記または科学的表記で表し"
996
+ "ます。精度 ``0`` は精度 ``1`` と同じものと取り扱われます。"
983
997
984
998
#: ../../library/string.rst:539
985
999
msgid ""
@@ -993,6 +1007,14 @@ msgid ""
993
1007
"decimal point is also removed if there are no remaining digits following it, "
994
1008
"unless the ``'#'`` option is used."
995
1009
msgstr ""
1010
+ "正確なルールは次の通りです: 書式 ``'e'`` 型および精度 ``p-1`` 桁で数値を"
1011
+ "フォーマットした結果、指数部が ``exp`` になったと仮定します。このとき ``m <= "
1012
+ "exp < p`` ならば、数値は書式 ``'f'`` 型および精度 ``p-1-exp`` 桁でフォーマッ"
1013
+ "トされます。ただし ``m`` は浮動小数点数では -4 であり、 :class:`Decimals "
1014
+ "<decimal.Decimal>` に対しては -6 です。それ以外の場合、数値は書式 ``'e'`` 型"
1015
+ "および精度 ``p-1`` 桁でフォーマットされます。どちらの場合でも、仮数部の有効で"
1016
+ "ない末尾のゼロは取り除かれます。また小数点以下に表示する桁が無い場合、 "
1017
+ "``'#'`` オプションが使われた場合をのぞき、小数点は除去されます。"
996
1018
997
1019
#: ../../library/string.rst:552
998
1020
msgid ""
0 commit comments