@@ -14,7 +14,7 @@ msgid ""
14
14
msgstr ""
15
15
"Project-Id-Version : Python 3.13\n "
16
16
"Report-Msgid-Bugs-To : \n "
17
- "POT-Creation-Date : 2025-02-28 14:17+0000\n "
17
+ "POT-Creation-Date : 2025-03-14 14:17+0000\n "
18
18
"PO-Revision-Date : 2021-06-28 00:55+0000\n "
19
19
"Last-Translator : souma987, 2023\n "
20
20
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
@@ -123,8 +123,9 @@ msgstr "サブプロセスを作成します。"
123
123
#: ../../library/asyncio-subprocess.rst:89
124
124
msgid ""
125
125
"The *limit* argument sets the buffer limit for :class:`StreamReader` "
126
- "wrappers for :attr:`Process.stdout` and :attr:`Process.stderr` (if :const:"
127
- "`subprocess.PIPE` is passed to *stdout* and *stderr* arguments)."
126
+ "wrappers for :attr:`~asyncio.subprocess.Process.stdout` and :attr:`~asyncio."
127
+ "subprocess.Process.stderr` (if :const:`subprocess.PIPE` is passed to "
128
+ "*stdout* and *stderr* arguments)."
128
129
msgstr ""
129
130
130
131
#: ../../library/asyncio-subprocess.rst:74
@@ -204,24 +205,17 @@ msgstr "*stdin*, *stdout* または *stderr* に渡すことができます。"
204
205
#: ../../library/asyncio-subprocess.rst:133
205
206
msgid ""
206
207
"If *PIPE* is passed to *stdin* argument, the :attr:`Process.stdin <asyncio."
207
- "subprocess.Process.stdin>` attribute will point to a :class:`StreamWriter` "
208
- "instance."
208
+ "subprocess.Process.stdin>` attribute will point to a :class:`~asyncio. "
209
+ "StreamWriter` instance."
209
210
msgstr ""
210
- "*PIPE* が *stdin* 引数に渡された場合、 :attr:`Process.stdin <asyncio."
211
- "subprocess.Process.stdin>` 属性は :class:`StreamWriter` インスタンスを指しま"
212
- "す。"
213
211
214
212
#: ../../library/asyncio-subprocess.rst:137
215
213
msgid ""
216
214
"If *PIPE* is passed to *stdout* or *stderr* arguments, the :attr:`Process."
217
215
"stdout <asyncio.subprocess.Process.stdout>` and :attr:`Process.stderr "
218
216
"<asyncio.subprocess.Process.stderr>` attributes will point to :class:"
219
- "`StreamReader` instances."
217
+ "`~asyncio. StreamReader` instances."
220
218
msgstr ""
221
- "*PIPE* が *stdout* や *stderr* 引数に渡された場合、 :attr:`Process.stdout "
222
- "<asyncio.subprocess.Process.stdout>` と :attr:`Process.stderr <asyncio."
223
- "subprocess.Process.stderr>` 属性は :class:`StreamReader` インスタンスを指しま"
224
- "す。"
225
219
226
220
#: ../../library/asyncio-subprocess.rst:145
227
221
msgid ""
@@ -259,11 +253,10 @@ msgstr ""
259
253
260
254
#: ../../library/asyncio-subprocess.rst:167
261
255
msgid ""
262
- "An object that wraps OS processes created by the :func:"
263
- "`create_subprocess_exec` and :func:`create_subprocess_shell` functions."
256
+ "An object that wraps OS processes created by the :func:`~asyncio."
257
+ "create_subprocess_exec` and :func:`~asyncio.create_subprocess_shell` "
258
+ "functions."
264
259
msgstr ""
265
- "関数 :func:`create_subprocess_exec` や :func:`create_subprocess_shell` によっ"
266
- "て生成された OS のプロセスをラップするオブジェクトです。"
267
260
268
261
#: ../../library/asyncio-subprocess.rst:171
269
262
msgid ""
@@ -437,38 +430,31 @@ msgstr "子プロセスを強制終了 (kill) します。"
437
430
438
431
#: ../../library/asyncio-subprocess.rst:266
439
432
msgid ""
440
- "On POSIX systems this method sends :py:data:`SIGKILL` to the child process."
433
+ "On POSIX systems this method sends :py:data:`~signal.SIGKILL` to the child "
434
+ "process."
441
435
msgstr ""
442
- "POSIX システムの場合、このメソッドは子プロセスに :py:data:`SIGKILL` シグナル"
443
- "を送信します。"
444
436
445
437
#: ../../library/asyncio-subprocess.rst:269
446
438
msgid "On Windows this method is an alias for :meth:`terminate`."
447
439
msgstr "Windows では、このメソッドは :meth:`terminate` のエイリアスです。"
448
440
449
441
#: ../../library/asyncio-subprocess.rst:273
450
442
msgid ""
451
- "Standard input stream (:class:`StreamWriter`) or ``None`` if the process was "
452
- "created with ``stdin=None``."
443
+ "Standard input stream (:class:`~asyncio. StreamWriter`) or ``None`` if the "
444
+ "process was created with ``stdin=None``."
453
445
msgstr ""
454
- "標準入力ストリーム (:class:`StreamWriter`) です。プロセスが ``stdin=None`` で"
455
- "生成された場合は ``None`` になります。"
456
446
457
447
#: ../../library/asyncio-subprocess.rst:278
458
448
msgid ""
459
- "Standard output stream (:class:`StreamReader`) or ``None`` if the process "
460
- "was created with ``stdout=None``."
449
+ "Standard output stream (:class:`~asyncio. StreamReader`) or ``None`` if the "
450
+ "process was created with ``stdout=None``."
461
451
msgstr ""
462
- "標準出力ストリーム (:class:`StreamReader`) です。プロセスが ``stdout=None`` "
463
- "で生成された場合は ``None`` になります。"
464
452
465
453
#: ../../library/asyncio-subprocess.rst:283
466
454
msgid ""
467
- "Standard error stream (:class:`StreamReader`) or ``None`` if the process was "
468
- "created with ``stderr=None``."
455
+ "Standard error stream (:class:`~asyncio. StreamReader`) or ``None`` if the "
456
+ "process was created with ``stderr=None``."
469
457
msgstr ""
470
- "標準エラー出力ストリーム (:class:`StreamReader`) です。プロセスが "
471
- "``stderr=None`` で生成された場合は ``None`` になります。"
472
458
473
459
#: ../../library/asyncio-subprocess.rst:288
474
460
msgid ""
@@ -484,11 +470,10 @@ msgstr "子プロセスのプロセス番号 (PID) です。"
484
470
485
471
#: ../../library/asyncio-subprocess.rst:299
486
472
msgid ""
487
- "Note that for processes created by the :func:`create_subprocess_shell` "
488
- "function, this attribute is the PID of the spawned shell."
473
+ "Note that for processes created by the :func:`~asyncio."
474
+ "create_subprocess_shell` function, this attribute is the PID of the spawned "
475
+ "shell."
489
476
msgstr ""
490
- ":func:`create_subprocess_shell` 関数によって生成されたプロセスの場合、この属"
491
- "性は生成されたシェルの PID になることに注意してください。"
492
477
493
478
#: ../../library/asyncio-subprocess.rst:304
494
479
msgid "Return code of the process when it exits."
0 commit comments