Skip to content

Commit 024fab9

Browse files
committed
#983 - remove fuzzy flags
1 parent 0e96ab9 commit 024fab9

File tree

1 file changed

+21
-7
lines changed

1 file changed

+21
-7
lines changed

library/asyncio.po

+21-7
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ msgid "Guides and Tutorials"
2929
msgstr "가이드 및 자습서"
3030

3131
#: ../../library/asyncio.rst:2
32-
#, fuzzy
3332
msgid ":mod:`!asyncio` --- Asynchronous I/O"
34-
msgstr ":mod:`asyncio` --- 비동기 I/O"
33+
msgstr ":mod:`!asyncio` --- 비동기 I/O"
3534

3635
#: ../../library/asyncio.rst:-1
3736
msgid "Hello World!"
@@ -48,6 +47,14 @@ msgid ""
4847
"\n"
4948
"asyncio.run(main())"
5049
msgstr ""
50+
"import asyncio\n"
51+
"\n"
52+
"async def main():\n"
53+
" print('Hello ...')\n"
54+
" await asyncio.sleep(1)\n"
55+
" print('... World!')\n"
56+
"\n"
57+
"asyncio.run(main())"
5158

5259
#: ../../library/asyncio.rst:22
5360
msgid ""
@@ -103,16 +110,15 @@ msgid ""
103110
msgstr "또한, *라이브러리와 프레임워크 개발자*\\가 다음과 같은 작업을 할 수 있도록 하는 **저수준** API가 있습니다:"
104111

105112
#: ../../library/asyncio.rst:48
106-
#, fuzzy
107113
msgid ""
108114
"create and manage :ref:`event loops <asyncio-event-loop>`, which provide "
109115
"asynchronous APIs for :ref:`networking <loop_create_server>`, running "
110116
":ref:`subprocesses <loop_subprocess_exec>`, handling :ref:`OS signals "
111117
"<loop_add_signal_handler>`, etc;"
112118
msgstr ""
113-
":meth:`네트워킹 <loop.create_server>`, :meth:`자식 프로세스 <loop.subprocess_exec>`"
114-
" 실행, :meth:`OS 시그널 <loop.add_signal_handler>` 처리 등의 비동기 API를 제공하는 "
115-
":ref:`이벤트 루프 <asyncio-event-loop>`\\를 만들고 관리합니다."
119+
":ref:`네트워킹 <loop_create_server>`, :ref:`자식 프로세스 <loop_subprocess_exec>` "
120+
"실행, :ref:`OS 시그널 <loop_add_signal_handler>` 처리 등의 비동기 API를 제공하는 :ref:`이벤트"
121+
" 루프 <asyncio-event-loop>`\\를 만들고 관리합니다."
116122

117123
#: ../../library/asyncio.rst:53
118124
msgid ""
@@ -140,7 +146,7 @@ msgstr ""
140146

141147
#: ../../library/asyncio.rst:64
142148
msgid "asyncio REPL"
143-
msgstr ""
149+
msgstr "asyncio REPL"
144150

145151
#: ../../library/asyncio.rst:65
146152
msgid ""
@@ -159,6 +165,14 @@ msgid ""
159165
">>> await asyncio.sleep(10, result='hello')\n"
160166
"'hello'"
161167
msgstr ""
168+
"$ python -m asyncio\n"
169+
"asyncio REPL ...\n"
170+
"Use \"await\" directly instead of \"asyncio.run()\".\n"
171+
"Type \"help\", \"copyright\", \"credits\" or \"license\" for more "
172+
"information.\n"
173+
">>> import asyncio\n"
174+
">>> await asyncio.sleep(10, result='hello')\n"
175+
"'hello'"
162176

163177
#: ../../library/asyncio.rst:77
164178
msgid ""

0 commit comments

Comments
 (0)