Skip to content

Commit d882c43

Browse files
committed
Closes #496 - translate library/asyncio-platforms.po
1 parent 5b46de0 commit d882c43

1 file changed

Lines changed: 42 additions & 16 deletions

File tree

library/asyncio-platforms.po

Lines changed: 42 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,104 +3,119 @@
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
55
#
6-
#, fuzzy
76
msgid ""
87
msgstr ""
98
"Project-Id-Version: Python 3.7\n"
109
"Report-Msgid-Bugs-To: \n"
1110
"POT-Creation-Date: 2018-10-23 06:56+0900\n"
1211
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14-
"Language-Team: LANGUAGE <LL@li.org>\n"
12+
"Last-Translator: Dong-gweon Oh <flowdas@gmail.com>\n"
13+
"Language-Team: Korean (https://python.flowdas.com)\n"
1514
"MIME-Version: 1.0\n"
1615
"Content-Type: text/plain; charset=utf-8\n"
1716
"Content-Transfer-Encoding: 8bit\n"
1817
"Generated-By: Babel 2.5.1\n"
1918

2019
#: ../Doc/library/asyncio-platforms.rst:9
2120
msgid "Platform Support"
22-
msgstr ""
21+
msgstr "플랫폼 지원"
2322

2423
#: ../Doc/library/asyncio-platforms.rst:11
2524
msgid ""
2625
"The :mod:`asyncio` module is designed to be portable, but some platforms "
2726
"have subtle differences and limitations due to the platforms' underlying "
2827
"architecture and capabilities."
2928
msgstr ""
29+
":mod:`asyncio` 모듈은 이식성이 있도록 설계되었지만, 플랫폼의 하부 아키텍처와 기능으로 인해 일부 플랫폼에는 미묘한 차이점과 "
30+
"제약이 있습니다."
3031

3132
#: ../Doc/library/asyncio-platforms.rst:17
3233
msgid "All Platforms"
33-
msgstr ""
34+
msgstr "모든 플랫폼"
3435

3536
#: ../Doc/library/asyncio-platforms.rst:19
3637
msgid ""
3738
":meth:`loop.add_reader` and :meth:`loop.add_writer` cannot be used to "
3839
"monitor file I/O."
3940
msgstr ""
41+
":meth:`loop.add_reader`\\와 :meth:`loop.add_writer`\\는 파일 I/O를 감시하는데 사용할 수 "
42+
"없습니다."
4043

4144
#: ../Doc/library/asyncio-platforms.rst:24
4245
msgid "Windows"
43-
msgstr ""
46+
msgstr "윈도우"
4447

4548
#: ../Doc/library/asyncio-platforms.rst:26
4649
msgid "All event loops on Windows do not support the following methods:"
47-
msgstr ""
50+
msgstr "윈도우의 모든 이벤트 루프는 다음 메서드를 지원하지 않습니다:"
4851

4952
#: ../Doc/library/asyncio-platforms.rst:28
5053
msgid ""
5154
":meth:`loop.create_unix_connection` and :meth:`loop.create_unix_server` "
5255
"are not supported. The :data:`socket.AF_UNIX` socket family is specific "
5356
"to Unix."
5457
msgstr ""
58+
":meth:`loop.create_unix_connection` 와 :meth:`loop.create_unix_server`\\는 "
59+
"지원되지 않습니다. :data:`socket.AF_UNIX` 소켓 패밀리는 유닉스에만 적용됩니다."
5560

5661
#: ../Doc/library/asyncio-platforms.rst:32
5762
msgid ""
5863
":meth:`loop.add_signal_handler` and :meth:`loop.remove_signal_handler` "
5964
"are not supported."
6065
msgstr ""
66+
":meth:`loop.add_signal_handler`\\와 :meth:`loop.remove_signal_handler`\\는 "
67+
"지원되지 않습니다."
6168

6269
#: ../Doc/library/asyncio-platforms.rst:35
6370
msgid ":class:`SelectorEventLoop` has the following limitations:"
64-
msgstr ""
71+
msgstr ":class:`SelectorEventLoop`\\에는 다음과 같은 제약이 있습니다:"
6572

6673
#: ../Doc/library/asyncio-platforms.rst:37
6774
msgid ""
6875
":class:`~selectors.SelectSelector` is used to wait on socket events: it "
6976
"supports sockets and is limited to 512 sockets."
7077
msgstr ""
78+
":class:`~selectors.SelectSelector`\\는 소켓 이벤트를 기다리는 데 사용됩니다: 소켓을 지원하며 512개의 "
79+
"소켓으로 제한됩니다."
7180

7281
#: ../Doc/library/asyncio-platforms.rst:40
7382
msgid ""
7483
":meth:`loop.add_reader` and :meth:`loop.add_writer` only accept socket "
7584
"handles (e.g. pipe file descriptors are not supported)."
7685
msgstr ""
86+
":meth:`loop.add_reader`\\와 :meth:`loop.add_writer`\\는 소켓 핸들만 받아들입니다 (예를 들어, "
87+
"파이프 파일 기술자는 지원되지 않습니다)."
7788

7889
#: ../Doc/library/asyncio-platforms.rst:43
7990
msgid ""
8091
"Pipes are not supported, so the :meth:`loop.connect_read_pipe` and "
8192
":meth:`loop.connect_write_pipe` methods are not implemented."
8293
msgstr ""
94+
"파이프는 지원되지 않으므로, :meth:`loop.connect_read_pipe`\\와 "
95+
":meth:`loop.connect_write_pipe` 메서드는 구현되지 않습니다."
8396

8497
#: ../Doc/library/asyncio-platforms.rst:46
8598
msgid ""
8699
":ref:`Subprocesses <asyncio-subprocess>` are not supported, i.e. "
87100
":meth:`loop.subprocess_exec` and :meth:`loop.subprocess_shell` methods "
88101
"are not implemented."
89102
msgstr ""
103+
":ref:`서브 프로세스 <asyncio-subprocess>`\\는 지원되지 않습니다, 즉, "
104+
":meth:`loop.subprocess_exec` 와 :meth:`loop.subprocess_shell` 메서드가 구현되지 않습니다."
90105

91106
#: ../Doc/library/asyncio-platforms.rst:50
92107
msgid ":class:`ProactorEventLoop` has the following limitations:"
93-
msgstr ""
108+
msgstr ":class:`ProactorEventLoop`\\에는 다음과 같은 제약이 있습니다:"
94109

95110
#: ../Doc/library/asyncio-platforms.rst:52
96111
msgid "The :meth:`loop.create_datagram_endpoint` method is not supported."
97-
msgstr ""
112+
msgstr ":meth:`loop.create_datagram_endpoint` 메서드는 지원되지 않습니다."
98113

99114
#: ../Doc/library/asyncio-platforms.rst:55
100115
msgid ""
101116
"The :meth:`loop.add_reader` and :meth:`loop.add_writer` methods are not "
102117
"supported."
103-
msgstr ""
118+
msgstr ":meth:`loop.add_reader`\\와 :meth:`loop.add_writer` 메서드는 지원되지 않습니다."
104119

105120
#: ../Doc/library/asyncio-platforms.rst:58
106121
msgid ""
@@ -110,16 +125,21 @@ msgid ""
110125
"<https://en.wikipedia.org/wiki/High_Precision_Event_Timer>`_) and on the "
111126
"Windows configuration."
112127
msgstr ""
128+
"윈도우에서 단조 시계의 해상도는 대개 15.6 msec 근처입니다. 최상의 해상도는 0.5 msec입니다. 해상도는 하드웨어(`HPET "
129+
"<https://en.wikipedia.org/wiki/High_Precision_Event_Timer>`_\\이 사용 가능한지)와 "
130+
"윈도우 구성에 따라 다릅니다."
113131

114132
#: ../Doc/library/asyncio-platforms.rst:68
115133
msgid "Subprocess Support on Windows"
116-
msgstr ""
134+
msgstr "윈도우에서의 서브 프로세스 지원"
117135

118136
#: ../Doc/library/asyncio-platforms.rst:70
119137
msgid ""
120138
":class:`SelectorEventLoop` on Windows does not support subproceses. On "
121139
"Windows, :class:`ProactorEventLoop` should be used instead::"
122140
msgstr ""
141+
"윈도우의 :class:`SelectorEventLoop`\\는 서브 프로세스를 지원하지 않습니다. 윈도우에서는, 대신 "
142+
":class:`ProactorEventLoop`\\를 사용해야 합니다::"
123143

124144
#: ../Doc/library/asyncio-platforms.rst:81
125145
msgid ""
@@ -128,18 +148,21 @@ msgid ""
128148
"supported, as :class:`ProactorEventLoop` has a different mechanism to "
129149
"watch child processes."
130150
msgstr ""
151+
":class:`ProactorEventLoop`\\가 자식 프로세스를 관찰하는 다른 메커니즘을 가지고 있으므로, "
152+
":meth:`policy.set_child_watcher() "
153+
"<AbstractEventLoopPolicy.set_child_watcher>` 함수도 지원되지 않습니다."
131154

132155
#: ../Doc/library/asyncio-platforms.rst:88
133156
msgid "macOS"
134-
msgstr ""
157+
msgstr "macOS"
135158

136159
#: ../Doc/library/asyncio-platforms.rst:90
137160
msgid "Modern macOS versions are fully supported."
138-
msgstr ""
161+
msgstr "최신 macOS 버전은 완전하게 지원됩니다."
139162

140163
#: ../Doc/library/asyncio-platforms.rst:93
141164
msgid "macOS <= 10.8"
142-
msgstr ""
165+
msgstr "macOS <= 10.8"
143166

144167
#: ../Doc/library/asyncio-platforms.rst:94
145168
msgid ""
@@ -150,4 +173,7 @@ msgid ""
150173
":class:`~selectors.PollSelector` to support character devices on these "
151174
"older versions of macOS. Example::"
152175
msgstr ""
153-
176+
"macOS 10.6, 10.7 및 10.8에서, 기본 이벤트 루프는 :class:`selectors.KqueueSelector`\\를 "
177+
"사용하는데, 이 버전에서는 문자 장치를 지원하지 않습니다. 이러한 이전 버전의 macOS에서 문자 장치를 지원하려면, "
178+
":class:`SelectorEventLoop`\\가 :class:`~selectors.SelectSelector` 나 "
179+
":class:`~selectors.PollSelector`\\를 사용하도록 수동으로 구성할 수 있습니다. 예::"

0 commit comments

Comments
 (0)