Skip to content

Commit 6d7f09b

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent e4eb950 commit 6d7f09b

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

c-api/intro.po

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,9 @@ msgid ""
199199
" possible values are covered in ``case`` statements. Use this in places "
200200
"where you might be tempted to put an ``assert(0)`` or ``abort()`` call."
201201
msgstr ""
202+
"到達するはずがないと考えているコードパスがあるときに使います。\n"
203+
"例えば、 ``case`` 節が全ての起こり得る値をカバーしている ``switch`` 文の ``default:`` 節です。\n"
204+
"``assert(0)`` や ``abort()`` の呼び出しを置きたくなる場所で使ってください。"
202205

203206
#: ../../c-api/intro.rst:113
204207
msgid "Return the absolute value of ``x``."
@@ -222,25 +225,31 @@ msgstr ""
222225

223226
#: ../../c-api/intro.rst:138
224227
msgid "Return the size of a structure (``type``) ``member`` in bytes."
225-
msgstr ""
228+
msgstr "(``type``) 構造体の ``member`` のサイズをバイト単位で返します。"
226229

227230
#: ../../c-api/intro.rst:144
228231
msgid ""
229232
"Argument must be a character or an integer in the range [-128, 127] or [0, "
230233
"255]. This macro returns ``c`` cast to an ``unsigned char``."
231234
msgstr ""
235+
"引数は文字か、[-128, 127] あるいは [0, 255] の範囲の整数でなければなりません。\n"
236+
"このマクロは ``符号なし文字`` にキャストした ``c`` を返します。"
232237

233238
#: ../../c-api/intro.rst:149
234239
msgid ""
235240
"Like ``getenv(s)``, but returns *NULL* if :option:`-E` was passed on the "
236241
"command line (i.e. if ``Py_IgnoreEnvironmentFlag`` is set)."
237242
msgstr ""
243+
"``getenv(s)`` に似ていますが、コマンドラインで :option:`-E` が渡された場合 (つまり "
244+
"``Py_IgnoreEnvironmentFlag`` が設定された場合) *NULL* を返します。"
238245

239246
#: ../../c-api/intro.rst:154
240247
msgid ""
241248
"Use this for unused arguments in a function definition to silence compiler "
242249
"warnings, e.g. ``PyObject* func(PyObject *Py_UNUSED(ignored))``."
243250
msgstr ""
251+
"関数定義で使っていない引数のコンパイラ警告を黙らせるのに使います。例えば、 ``PyObject* func(PyObject "
252+
"*Py_UNUSED(ignored))`` のように使います。"
244253

245254
#: ../../c-api/intro.rst:163
246255
msgid "Objects, Types and Reference Counts"

0 commit comments

Comments
 (0)