6
6
# Translators:
7
7
# tomo, 2020
8
8
# Tetsuo Koyama <tkoyama010@gmail.com>, 2020
9
+ # Osamu NAKAMURA, 2021
9
10
#
10
11
#, fuzzy
11
12
msgid ""
@@ -14,7 +15,7 @@ msgstr ""
14
15
"Report-Msgid-Bugs-To :\n "
15
16
"POT-Creation-Date :2021-01-01 16:06+0000\n "
16
17
"PO-Revision-Date :2020-05-30 11:49+0000\n "
17
- "Last-Translator :Tetsuo Koyama <tkoyama010@gmail.com>, 2020 \n "
18
+ "Last-Translator :Osamu NAKAMURA, 2021 \n "
18
19
"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
19
20
"MIME-Version :1.0\n "
20
21
"Content-Type :text/plain; charset=UTF-8\n "
@@ -165,114 +166,116 @@ msgstr ""
165
166
msgid ""
166
167
"See also :ref:`Initialization, Finalization, and Threads <initialization>`."
167
168
msgstr ""
169
+ ":ref:`Initialization, Finalization, and Threads <initialization>` も参照してください。"
168
170
169
171
#: ../../c-api/init_config.rst:54
170
172
msgid ":pep:`587`\" Python Initialization Configuration\" ."
171
- msgstr ""
173
+ msgstr ":pep:`587` \" Python 初期化設定 \" "
172
174
173
175
#: ../../c-api/init_config.rst:58
174
176
msgid "PyWideStringList"
175
177
msgstr "PyWideStringList"
176
178
177
179
#: ../../c-api/init_config.rst:62
178
180
msgid "List of ``wchar_t*`` strings."
179
- msgstr ""
181
+ msgstr "``wchar_t*`` 文字列のリスト。 "
180
182
181
183
#: ../../c-api/init_config.rst:64
182
184
msgid ""
183
185
"If *length* is non-zero, *items* must be non-``NULL`` and all strings must "
184
186
"be non-``NULL``."
185
187
msgstr ""
188
+ "*length* が非ゼロの場合は、*items* は非 ``NULL`` かつすべての文字列は非 ``NULL`` でなければなりません。"
186
189
187
190
#: ../../c-api/init_config.rst:67
188
191
msgid "Methods:"
189
192
msgstr ""
190
193
191
194
#: ../../c-api/init_config.rst:71
192
195
msgid "Append *item* to *list*."
193
- msgstr ""
196
+ msgstr "*item* を *list* に追加します。 "
194
197
195
198
#: ../../c-api/init_config.rst:73 ../../c-api/init_config.rst:84
196
199
msgid "Python must be preinitialized to call this function."
197
200
msgstr ""
198
201
199
202
#: ../../c-api/init_config.rst:77
200
203
msgid "Insert *item* into *list* at *index*."
201
- msgstr ""
204
+ msgstr "*item* を *list* の *index* の位置に挿入します。 "
202
205
203
206
#: ../../c-api/init_config.rst:79
204
207
msgid ""
205
208
"If *index* is greater than or equal to *list* length, append *item* to "
206
209
"*list*."
207
- msgstr ""
210
+ msgstr "*index* が *list* の長さ以上の場合、*item* を *list* の末尾に追加します。 "
208
211
209
212
#: ../../c-api/init_config.rst:82
210
213
msgid "*index* must be greater than or equal to 0."
211
- msgstr ""
214
+ msgstr "*index* は、0以上でなければなりません。 "
212
215
213
216
#: ../../c-api/init_config.rst:86 ../../c-api/init_config.rst:106
214
217
#: ../../c-api/init_config.rst:209 ../../c-api/init_config.rst:416
215
218
msgid "Structure fields:"
216
- msgstr ""
219
+ msgstr "構造体フィールド: "
217
220
218
221
#: ../../c-api/init_config.rst:90
219
222
msgid "List length."
220
- msgstr ""
223
+ msgstr "リストの長さ。 "
221
224
222
225
#: ../../c-api/init_config.rst:94
223
226
msgid "List items."
224
- msgstr ""
227
+ msgstr "リストの要素。 "
225
228
226
229
#: ../../c-api/init_config.rst:97
227
230
msgid "PyStatus"
228
- msgstr ""
231
+ msgstr "PyStatus "
229
232
230
233
#: ../../c-api/init_config.rst:101
231
234
msgid ""
232
235
"Structure to store an initialization function status: success, error or "
233
236
"exit."
234
- msgstr ""
237
+ msgstr "初期化関数のステータス(成功、エラー、終了)を格納する構造体です。 "
235
238
236
239
#: ../../c-api/init_config.rst:104
237
240
msgid ""
238
241
"For an error, it can store the C function name which created the error."
239
- msgstr ""
242
+ msgstr "エラー時には、エラーを生成したC関数の名前を格納できます。 "
240
243
241
244
#: ../../c-api/init_config.rst:110
242
245
msgid "Exit code. Argument passed to ``exit()``."
243
- msgstr ""
246
+ msgstr "終了コード。``exit()`` の引数として渡されます。 "
244
247
245
248
#: ../../c-api/init_config.rst:114
246
249
msgid "Error message."
247
- msgstr ""
250
+ msgstr "エラーメッセージ。 "
248
251
249
252
#: ../../c-api/init_config.rst:118
250
253
msgid "Name of the function which created an error, can be ``NULL``."
251
- msgstr ""
254
+ msgstr "エラーを生成した関数の名前で、``NULL`` になりえます。 "
252
255
253
256
#: ../../c-api/init_config.rst:120
254
257
msgid "Functions to create a status:"
255
- msgstr ""
258
+ msgstr "ステータスを生成する関数: "
256
259
257
260
#: ../../c-api/init_config.rst:124
258
261
msgid "Success."
259
- msgstr ""
262
+ msgstr "成功。 "
260
263
261
264
#: ../../c-api/init_config.rst:128
262
265
msgid "Initialization error with a message."
263
- msgstr ""
266
+ msgstr "メッセージとともにエラーを初期化します。 "
264
267
265
268
#: ../../c-api/init_config.rst:132
266
269
msgid "Memory allocation failure (out of memory)."
267
- msgstr ""
270
+ msgstr "メモリ割り当ての失敗(メモリ不足)。 "
268
271
269
272
#: ../../c-api/init_config.rst:136
270
273
msgid "Exit Python with the specified exit code."
271
- msgstr ""
274
+ msgstr "指定した終了コードでPythonを終了します。 "
272
275
273
276
#: ../../c-api/init_config.rst:138
274
277
msgid "Functions to handle a status:"
275
- msgstr ""
278
+ msgstr "ステータスを扱う関数: "
276
279
277
280
#: ../../c-api/init_config.rst:142
278
281
msgid ""