5
5
#
6
6
# Translators:
7
7
# tomo, 2021
8
+ # Arihiro TAKASE, 2023
8
9
#
9
10
#, fuzzy
10
11
msgid ""
11
12
msgstr ""
12
13
"Project-Id-Version : Python 3.11\n "
13
14
"Report-Msgid-Bugs-To : \n "
14
- "POT-Creation-Date : 2023-04-07 14:12 +0000\n "
15
+ "POT-Creation-Date : 2023-04-28 14:13 +0000\n "
15
16
"PO-Revision-Date : 2021-06-28 00:48+0000\n "
16
- "Last-Translator : tomo, 2021 \n "
17
+ "Last-Translator : Arihiro TAKASE, 2023 \n "
17
18
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
18
19
"ja/)\n "
19
20
"MIME-Version : 1.0\n "
@@ -36,13 +37,18 @@ msgid ""
36
37
"*format* and the extra arguments. See the Unix man page :manpage:"
37
38
"`snprintf(3)`."
38
39
msgstr ""
40
+ "書式文字列 *format* と追加の引数から、 *size* バイトを超えない文字列を *str* "
41
+ "に出力します。 Unix man page の :manpage:`snprintf(3)` を参照してください。"
39
42
40
43
#: ../../c-api/conversion.rst:19
41
44
msgid ""
42
45
"Output not more than *size* bytes to *str* according to the format string "
43
46
"*format* and the variable argument list *va*. Unix man page :manpage:"
44
47
"`vsnprintf(3)`."
45
48
msgstr ""
49
+ "書式文字列 *format* と可変長引数リスト *va* から、 *size* バイトを超えない文"
50
+ "字列を *str* に出力します。 Unix man page の :manpage:`vsnprintf(3)` を参照し"
51
+ "てください。"
46
52
47
53
#: ../../c-api/conversion.rst:23
48
54
msgid ""
@@ -76,20 +82,27 @@ msgid ""
76
82
"characters were written to *str* (excluding the trailing ``'\\ 0'`` byte at "
77
83
"``str[rv]``)."
78
84
msgstr ""
85
+ "``0 <= rv < size`` のとき、変換出力は成功して、(最後の ``str[rv]`` にある "
86
+ "``'\\ 0'`` を除いて) *rv* 文字が *str* に出力された。"
79
87
80
88
#: ../../c-api/conversion.rst:40
81
89
msgid ""
82
90
"When ``rv >= size``, the output conversion was truncated and a buffer with "
83
91
"``rv + 1`` bytes would have been needed to succeed. ``str[size-1]`` is "
84
92
"``'\\ 0'`` in this case."
85
93
msgstr ""
94
+ "``rv >= size`` のとき、変換出力は切り詰められており、成功するためには ``rv + "
95
+ "1`` バイトが必要だったことを示します。``str[size-1]`` は ``'\\ 0'`` です。"
86
96
87
97
#: ../../c-api/conversion.rst:44
88
98
msgid ""
89
99
"When ``rv < 0``, \" something bad happened.\" ``str[size-1]`` is ``'\\ 0'`` in "
90
100
"this case too, but the rest of *str* is undefined. The exact cause of the "
91
101
"error depends on the underlying platform."
92
102
msgstr ""
103
+ "``rv < 0`` のときは、何か悪いことが起こった時です。この場合でも "
104
+ "``str[size-1]`` は ``'\\ 0'`` ですが、*str* のそれ以外の部分は未定義です。エ"
105
+ "ラーの正確な原因はプラットフォーム依存です。"
93
106
94
107
#: ../../c-api/conversion.rst:49
95
108
msgid ""
@@ -105,6 +118,10 @@ msgid ""
105
118
"have leading or trailing whitespace. The conversion is independent of the "
106
119
"current locale."
107
120
msgstr ""
121
+ "文字列 ``s`` を :c:expr:`double` に変換します。失敗したときは Python の例外を"
122
+ "発生させます。受け入れられる文字列は、 Python の :func:`float` コンストラクタ"
123
+ "が受け付ける文字列に準拠しますが、 ``s`` の先頭と末尾に空白文字があってはなら"
124
+ "ないという部分が異なります。この変換は現在のロケールに依存しません。"
108
125
109
126
#: ../../c-api/conversion.rst:59
110
127
msgid ""
@@ -160,6 +177,8 @@ msgid ""
160
177
"Convert a :c:expr:`double` *val* to a string using supplied *format_code*, "
161
178
"*precision*, and *flags*."
162
179
msgstr ""
180
+ ":c:expr:`double` *val* を指定された *format_code*, *precision*, *flags* に基"
181
+ "づいて文字列に変換します。"
163
182
164
183
#: ../../c-api/conversion.rst:90
165
184
msgid ""
0 commit comments