10
10
# E. Kawashima, 2017
11
11
# Masato HASHIMOTO <cabezon.hashimoto@gmail.com>, 2018
12
12
# Azuki <ogran.std@gmail.com>, 2019
13
- # tomo, 2019
14
13
# SHIMIZU Taku <shimizu.taku@gmail.com>, 2019
14
+ # tomo, 2019
15
15
#
16
16
#, fuzzy
17
17
msgid ""
@@ -20,7 +20,7 @@ msgstr ""
20
20
"Report-Msgid-Bugs-To : \n "
21
21
"POT-Creation-Date : 2019-05-20 11:27+0900\n "
22
22
"PO-Revision-Date : 2017-02-16 17:49+0000\n "
23
- "Last-Translator : SHIMIZU Taku <shimizu.taku@gmail.com> , 2019\n "
23
+ "Last-Translator : tomo , 2019\n "
24
24
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
25
25
"MIME-Version : 1.0\n "
26
26
"Content-Type : text/plain; charset=UTF-8\n "
@@ -58,7 +58,7 @@ msgstr "単にコルーチンを呼び出しただけでは、コルーチンの
58
58
59
59
#: ../../library/asyncio-task.rst:43
60
60
msgid "To actually run a coroutine, asyncio provides three main mechanisms:"
61
- msgstr ""
61
+ msgstr "実際にコルーチンを実行するために、 asyncio は3つの機構を提供しています: "
62
62
63
63
#: ../../library/asyncio-task.rst:45
64
64
msgid ""
@@ -124,7 +124,7 @@ msgstr ""
124
124
msgid ""
125
125
"Python coroutines are *awaitables* and therefore can be awaited from other "
126
126
"coroutines::"
127
- msgstr ""
127
+ msgstr "Python のコルーチンは *待機可能オブジェクト* (awaitable) であり、そのため他のコルーチンを待機させられます:: "
128
128
129
129
#: ../../library/asyncio-task.rst:143
130
130
msgid ""
@@ -146,21 +146,25 @@ msgid ""
146
146
"asyncio also supports legacy :ref:`generator-based "
147
147
"<asyncio_generator_based_coro>` coroutines."
148
148
msgstr ""
149
+ "asyncio は、古くからある :ref:`ジェネレータベース <asyncio_generator_based_coro>` "
150
+ "のコルーチンもサポートしています。"
149
151
150
152
#: ../../library/asyncio-task.rst:156
151
153
msgid "Tasks"
152
- msgstr "タスク "
154
+ msgstr "Task "
153
155
154
156
#: ../../library/asyncio-task.rst:157
155
157
msgid "*Tasks* are used to schedule coroutines *concurrently*."
156
- msgstr ""
158
+ msgstr "*Task* は、コルーチンを *並行に* スケジュールするのに使います。 "
157
159
158
160
#: ../../library/asyncio-task.rst:159
159
161
msgid ""
160
162
"When a coroutine is wrapped into a *Task* with functions like "
161
163
":func:`asyncio.create_task` the coroutine is automatically scheduled to run "
162
164
"soon::"
163
165
msgstr ""
166
+ ":func:`asyncio.create_task` のような関数で、コルーチンが *Task* "
167
+ "にラップされているとき、自動的にコルーチンは即時実行されるようにスケジュールされます::"
164
168
165
169
#: ../../library/asyncio-task.rst:181
166
170
msgid "Futures"
0 commit comments