66# Translators:
77# tomo, 2020
88# Tetsuo Koyama <tkoyama010@gmail.com>, 2020
9+ # Osamu NAKAMURA, 2021
910#
1011#, fuzzy
1112msgid ""
@@ -14,7 +15,7 @@ msgstr ""
1415"Report-Msgid-Bugs-To :\n "
1516"POT-Creation-Date :2021-01-01 16:06+0000\n "
1617"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 "
1819"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
1920"MIME-Version :1.0\n "
2021"Content-Type :text/plain; charset=UTF-8\n "
@@ -165,114 +166,116 @@ msgstr ""
165166msgid ""
166167"See also :ref:`Initialization, Finalization, and Threads <initialization>`."
167168msgstr ""
169+ ":ref:`Initialization, Finalization, and Threads <initialization>` も参照してください。"
168170
169171#: ../../c-api/init_config.rst:54
170172msgid ":pep:`587`\" Python Initialization Configuration\" ."
171- msgstr ""
173+ msgstr ":pep:`587` \" Python 初期化設定 \" "
172174
173175#: ../../c-api/init_config.rst:58
174176msgid "PyWideStringList"
175177msgstr "PyWideStringList"
176178
177179#: ../../c-api/init_config.rst:62
178180msgid "List of ``wchar_t*`` strings."
179- msgstr ""
181+ msgstr "``wchar_t*`` 文字列のリスト。 "
180182
181183#: ../../c-api/init_config.rst:64
182184msgid ""
183185"If *length* is non-zero, *items* must be non-``NULL`` and all strings must "
184186"be non-``NULL``."
185187msgstr ""
188+ "*length* が非ゼロの場合は、*items* は非 ``NULL`` かつすべての文字列は非 ``NULL`` でなければなりません。"
186189
187190#: ../../c-api/init_config.rst:67
188191msgid "Methods:"
189192msgstr ""
190193
191194#: ../../c-api/init_config.rst:71
192195msgid "Append *item* to *list*."
193- msgstr ""
196+ msgstr "*item* を *list* に追加します。 "
194197
195198#: ../../c-api/init_config.rst:73 ../../c-api/init_config.rst:84
196199msgid "Python must be preinitialized to call this function."
197200msgstr ""
198201
199202#: ../../c-api/init_config.rst:77
200203msgid "Insert *item* into *list* at *index*."
201- msgstr ""
204+ msgstr "*item* を *list* の *index* の位置に挿入します。 "
202205
203206#: ../../c-api/init_config.rst:79
204207msgid ""
205208"If *index* is greater than or equal to *list* length, append *item* to "
206209"*list*."
207- msgstr ""
210+ msgstr "*index* が *list* の長さ以上の場合、*item* を *list* の末尾に追加します。 "
208211
209212#: ../../c-api/init_config.rst:82
210213msgid "*index* must be greater than or equal to 0."
211- msgstr ""
214+ msgstr "*index* は、0以上でなければなりません。 "
212215
213216#: ../../c-api/init_config.rst:86 ../../c-api/init_config.rst:106
214217#: ../../c-api/init_config.rst:209 ../../c-api/init_config.rst:416
215218msgid "Structure fields:"
216- msgstr ""
219+ msgstr "構造体フィールド: "
217220
218221#: ../../c-api/init_config.rst:90
219222msgid "List length."
220- msgstr ""
223+ msgstr "リストの長さ。 "
221224
222225#: ../../c-api/init_config.rst:94
223226msgid "List items."
224- msgstr ""
227+ msgstr "リストの要素。 "
225228
226229#: ../../c-api/init_config.rst:97
227230msgid "PyStatus"
228- msgstr ""
231+ msgstr "PyStatus "
229232
230233#: ../../c-api/init_config.rst:101
231234msgid ""
232235"Structure to store an initialization function status: success, error or "
233236"exit."
234- msgstr ""
237+ msgstr "初期化関数のステータス(成功、エラー、終了)を格納する構造体です。 "
235238
236239#: ../../c-api/init_config.rst:104
237240msgid ""
238241"For an error, it can store the C function name which created the error."
239- msgstr ""
242+ msgstr "エラー時には、エラーを生成したC関数の名前を格納できます。 "
240243
241244#: ../../c-api/init_config.rst:110
242245msgid "Exit code. Argument passed to ``exit()``."
243- msgstr ""
246+ msgstr "終了コード。``exit()`` の引数として渡されます。 "
244247
245248#: ../../c-api/init_config.rst:114
246249msgid "Error message."
247- msgstr ""
250+ msgstr "エラーメッセージ。 "
248251
249252#: ../../c-api/init_config.rst:118
250253msgid "Name of the function which created an error, can be ``NULL``."
251- msgstr ""
254+ msgstr "エラーを生成した関数の名前で、``NULL`` になりえます。 "
252255
253256#: ../../c-api/init_config.rst:120
254257msgid "Functions to create a status:"
255- msgstr ""
258+ msgstr "ステータスを生成する関数: "
256259
257260#: ../../c-api/init_config.rst:124
258261msgid "Success."
259- msgstr ""
262+ msgstr "成功。 "
260263
261264#: ../../c-api/init_config.rst:128
262265msgid "Initialization error with a message."
263- msgstr ""
266+ msgstr "メッセージとともにエラーを初期化します。 "
264267
265268#: ../../c-api/init_config.rst:132
266269msgid "Memory allocation failure (out of memory)."
267- msgstr ""
270+ msgstr "メモリ割り当ての失敗(メモリ不足)。 "
268271
269272#: ../../c-api/init_config.rst:136
270273msgid "Exit Python with the specified exit code."
271- msgstr ""
274+ msgstr "指定した終了コードでPythonを終了します。 "
272275
273276#: ../../c-api/init_config.rst:138
274277msgid "Functions to handle a status:"
275- msgstr ""
278+ msgstr "ステータスを扱う関数: "
276279
277280#: ../../c-api/init_config.rst:142
278281msgid ""