Skip to content

Commit 4229fbf

Browse files
committed
Closes #348 - translate library/telnetlib.po
1 parent 85caf2d commit 4229fbf

File tree

1 file changed

+75
-36
lines changed

1 file changed

+75
-36
lines changed

library/telnetlib.po

Lines changed: 75 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,26 @@
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, 2017.
55
#
6-
#, fuzzy
76
msgid ""
87
msgstr ""
98
"Project-Id-Version: Python 3.6\n"
109
"Report-Msgid-Bugs-To: \n"
1110
"POT-Creation-Date: 2018-12-25 10:27+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.6.0\n"
1918

2019
#: ../Doc/library/telnetlib.rst:2
2120
msgid ":mod:`telnetlib` --- Telnet client"
22-
msgstr ""
21+
msgstr ":mod:`telnetlib` --- 텔넷 클라이언트"
2322

2423
#: ../Doc/library/telnetlib.rst:9
2524
msgid "**Source code:** :source:`Lib/telnetlib.py`"
26-
msgstr ""
25+
msgstr "**소스 코드:** :source:`Lib/telnetlib.py`"
2726

2827
#: ../Doc/library/telnetlib.rst:15
2928
msgid ""
@@ -36,6 +35,10 @@ msgid ""
3635
"traditionally not included in ``arpa/telnet.h``, see the module source "
3736
"itself."
3837
msgstr ""
38+
":mod:`telnetlib` 모듈은 텔넷 프로토콜을 구현하는 :class:`Telnet` 클래스를 제공합니다. 프로토콜에 대한 자세한 "
39+
"내용은 :rfc:`854`\\를 참조하십시오. 또한, 프로토콜 문자(아래를 보십시오)와 텔넷 옵션을 위한 기호 상수를 제공합니다. 텔넷 "
40+
"옵션의 기호 이름은 ``arpa/telnet.h``\\의 정의를 따르며, 선행 ``TELOPT_``\\는 제거됩니다. 전통적으로 "
41+
"``arpa/telnet.h``\\에 포함되지 않는 옵션의 기호 이름에 대해서는 모듈 소스 자체를 참조하십시오."
3942

4043
#: ../Doc/library/telnetlib.rst:23
4144
msgid ""
@@ -45,6 +48,10 @@ msgid ""
4548
"EC (Erase Character), EL (Erase Line), GA (Go Ahead), SB (Subnegotiation "
4649
"Begin)."
4750
msgstr ""
51+
"텔넷 명령을 위한 기호 상수는 다음과 같습니다: IAC, DONT, DO, WONT, WILL, SE (Subnegotiation "
52+
"End), NOP (No Operation), DM (Data Mark), BRK (Break), IP (Interrupt "
53+
"process), AO (Abort output), AYT (Are You There), EC (Erase Character), EL "
54+
"(Erase Line), GA (Go Ahead), SB (Subnegotiation Begin)."
4855

4956
#: ../Doc/library/telnetlib.rst:31
5057
msgid ""
@@ -57,10 +64,14 @@ msgid ""
5764
" for blocking operations like the connection attempt (if not specified, "
5865
"the global default timeout setting will be used)."
5966
msgstr ""
67+
":class:`Telnet`\\는 텔넷 서버와의 연결을 나타냅니다. 인스턴스는 기본적으로 처음에는 연결되지 않습니다; 연결하려면 "
68+
":meth:`open` 메서드를 사용해야 합니다. 또는, 호스트 이름과 선택적 포트 번호를 생성자에게 전달할 수 있는데, 이때는 생성자가"
69+
" 반환되기 전에 서버와 연결합니다. 선택적 *timeout* 매개 변수는 연결 시도와 같은 블로킹 연산에 대한 시간제한을 초로 지정합니다"
70+
" (지정하지 않으면, 전역 기본 시간제한 설정이 사용됩니다)."
6071

6172
#: ../Doc/library/telnetlib.rst:40
6273
msgid "Do not reopen an already connected instance."
63-
msgstr ""
74+
msgstr "이미 연결된 인스턴스를 다시 열지 마십시오."
6475

6576
#: ../Doc/library/telnetlib.rst:42
6677
msgid ""
@@ -69,99 +80,116 @@ msgid ""
6980
"they can return an empty string for other reasons. See the individual "
7081
"descriptions below."
7182
msgstr ""
83+
"이 클래스에는 많은 :meth:`read_\\*` 메서드가 있습니다. 이들 중 일부는 연결의 끝을 읽을 때 "
84+
":exc:`EOFError`\\를 발생시킴에 유의하십시오. 다른 이유로 빈 문자열을 반환할 수 있기 때문입니다. 아래의 개별 설명을 "
85+
"참조하십시오."
7286

7387
#: ../Doc/library/telnetlib.rst:46
7488
msgid ""
7589
"A :class:`Telnet` object is a context manager and can be used in a "
7690
":keyword:`with` statement. When the :keyword:`!with` block ends, the "
7791
":meth:`close` method is called::"
7892
msgstr ""
93+
":class:`Telnet` 객체는 컨텍스트 관리자이며 :keyword:`with` 문에서 사용할 수 있습니다. "
94+
":keyword:`!with` 블록이 끝날 때, :meth:`close` 메서드가 호출됩니다::"
7995

8096
#: ../Doc/library/telnetlib.rst:55
8197
msgid "Context manager support added"
82-
msgstr ""
98+
msgstr "컨텍스트 관리자 지원을 추가했습니다"
8399

84100
#: ../Doc/library/telnetlib.rst:60
85101
msgid ":rfc:`854` - Telnet Protocol Specification"
86-
msgstr ""
102+
msgstr ":rfc:`854` - Telnet Protocol Specification"
87103

88104
#: ../Doc/library/telnetlib.rst:61
89105
msgid "Definition of the Telnet protocol."
90-
msgstr ""
106+
msgstr "텔넷 프로토콜의 정의."
91107

92108
#: ../Doc/library/telnetlib.rst:67
93109
msgid "Telnet Objects"
94-
msgstr ""
110+
msgstr "텔넷 객체"
95111

96112
#: ../Doc/library/telnetlib.rst:69
97113
msgid ":class:`Telnet` instances have the following methods:"
98-
msgstr ""
114+
msgstr ":class:`Telnet` 인스턴스에는 다음과 같은 메서드가 있습니다.:"
99115

100116
#: ../Doc/library/telnetlib.rst:74
101117
msgid ""
102118
"Read until a given byte string, *expected*, is encountered or until "
103119
"*timeout* seconds have passed."
104-
msgstr ""
120+
msgstr "주어진 바이트열 *expected*\\를 만나거나 *timeout* 초가 경과 할 때까지 읽습니다."
105121

106122
#: ../Doc/library/telnetlib.rst:77
107123
msgid ""
108124
"When no match is found, return whatever is available instead, possibly "
109125
"empty bytes. Raise :exc:`EOFError` if the connection is closed and no "
110126
"cooked data is available."
111127
msgstr ""
128+
"일치하는 것을 찾을 수 없으면, 사용 가능한 것을 대신 반환합니다. 빈 바이트열도 가능합니다. 연결이 닫혀 있고 사용할 수 있는 요리된 "
129+
"데이터가 없으면 :exc:`EOFError`\\를 발생시킵니다."
112130

113131
#: ../Doc/library/telnetlib.rst:84
114132
msgid "Read all data until EOF as bytes; block until connection closed."
115-
msgstr ""
133+
msgstr "EOF까지 모든 데이터를 바이트열로 읽습니다; 연결이 닫힐 때까지 블록합니다."
116134

117135
#: ../Doc/library/telnetlib.rst:89
118136
msgid ""
119137
"Read at least one byte of cooked data unless EOF is hit. Return ``b''`` "
120138
"if EOF is hit. Block if no data is immediately available."
121139
msgstr ""
140+
"EOF를 만나지 않으면 적어도 1바이트의 요리된 데이터를 읽습니다. EOF를 만나면 ``b''``\\를 반환합니다. 즉시 사용할 수 있는"
141+
" 데이터가 없으면 블록합니다."
122142

123143
#: ../Doc/library/telnetlib.rst:95
124144
msgid "Read everything that can be without blocking in I/O (eager)."
125-
msgstr ""
145+
msgstr "I/O에서 블록하지 않고 읽을 수 있는 모든 것을 읽습니다 (eager)."
126146

127147
#: ../Doc/library/telnetlib.rst:97 ../Doc/library/telnetlib.rst:106
128148
msgid ""
129149
"Raise :exc:`EOFError` if connection closed and no cooked data available. "
130150
"Return ``b''`` if no cooked data available otherwise. Do not block unless"
131151
" in the midst of an IAC sequence."
132152
msgstr ""
153+
"연결이 닫혀 있고 사용할 수 있는 요리된 데이터가 없으면 :exc:`EOFError`\\를 발생시킵니다. 그렇지 않고 사용할 수 있는 "
154+
"요리된 데이터가 없으면 ``b''``\\를 반환합니다. IAC 시퀀스의 중간에 있지 않으면 블록하지 않습니다."
133155

134156
#: ../Doc/library/telnetlib.rst:104
135157
msgid "Read readily available data."
136-
msgstr ""
158+
msgstr "쉽게 사용할 수 있는 데이터를 읽습니다."
137159

138160
#: ../Doc/library/telnetlib.rst:113
139161
msgid "Process and return data already in the queues (lazy)."
140-
msgstr ""
162+
msgstr "이미 큐에 있는 데이터를 처리하고 반환합니다 (lazy)."
141163

142164
#: ../Doc/library/telnetlib.rst:115
143165
msgid ""
144166
"Raise :exc:`EOFError` if connection closed and no data available. Return "
145167
"``b''`` if no cooked data available otherwise. Do not block unless in "
146168
"the midst of an IAC sequence."
147169
msgstr ""
170+
"연결이 닫혀 있고 사용할 수 있는 데이터가 없으면 :exc:`EOFError`\\를 발생시킵니다. 그렇지 않고 사용할 수 있는 요리된 "
171+
"데이터가 없으면 ``b''``\\를 반환합니다. IAC 시퀀스의 중간에 있지 않으면 블록하지 않습니다."
148172

149173
#: ../Doc/library/telnetlib.rst:122
150174
msgid "Return any data available in the cooked queue (very lazy)."
151-
msgstr ""
175+
msgstr "요리된 큐에 있는 모든 데이터를 반환합니다 (very lazy)."
152176

153177
#: ../Doc/library/telnetlib.rst:124
154178
msgid ""
155179
"Raise :exc:`EOFError` if connection closed and no data available. Return "
156180
"``b''`` if no cooked data available otherwise. This method never blocks."
157181
msgstr ""
182+
"연결이 닫혀 있고 사용할 수 있는 데이터가 없으면 :exc:`EOFError`\\를 발생시킵니다. 그렇지 않고 사용할 수 있는 요리된 "
183+
"데이터가 없으면 ``b''``\\를 반환합니다. 이 메서드는 절대 블록하지 않습니다."
158184

159185
#: ../Doc/library/telnetlib.rst:130
160186
msgid ""
161187
"Return the data collected between a SB/SE pair (suboption begin/end). The"
162188
" callback should access these data when it was invoked with a ``SE`` "
163189
"command. This method never blocks."
164190
msgstr ""
191+
"SB/SE 쌍(suboption begin/end)간에 수집된 데이터를 반환합니다. ``SE`` 명령으로 호출되었을 때 콜백은 이 "
192+
"데이터에 액세스해야 합니다. 이 방법은 절대 블록하지 않습니다."
165193

166194
#: ../Doc/library/telnetlib.rst:137
167195
msgid ""
@@ -171,60 +199,68 @@ msgid ""
171199
" connection attempt (if not specified, the global default timeout setting"
172200
" will be used)."
173201
msgstr ""
202+
"호스트에 연결합니다. 선택적 두 번째 인자는 포트 번호이며, 기본값은 표준 텔넷 포트(23)입니다. 선택적 *timeout* 매개 변수는"
203+
" 연결 시도와 같은 블로킹 연산에 대한 시간제한을 초로 지정합니다 (지정하지 않으면, 전역 기본 시간제한 설정이 사용됩니다)."
174204

175205
#: ../Doc/library/telnetlib.rst:142
176206
msgid "Do not try to reopen an already connected instance."
177-
msgstr ""
207+
msgstr "이미 연결된 인스턴스를 다시 열려고 하지 마십시오."
178208

179209
#: ../Doc/library/telnetlib.rst:147
180210
msgid ""
181211
"Print a debug message when the debug level is ``>`` 0. If extra arguments"
182212
" are present, they are substituted in the message using the standard "
183213
"string formatting operator."
184214
msgstr ""
215+
"디버그 수준이 ``>`` 0 일 때 디버그 메시지를 인쇄합니다. 추가 인자가 있으면, 표준 문자열 포매팅 연산자를 사용하여 메시지에 "
216+
"치환됩니다."
185217

186218
#: ../Doc/library/telnetlib.rst:154
187219
msgid ""
188220
"Set the debug level. The higher the value of *debuglevel*, the more "
189221
"debug output you get (on ``sys.stdout``)."
190222
msgstr ""
223+
"디버그 수준을 설정합니다. *debuglevel*\\의 값이 클수록, 더 많은 디버그 출력을 얻을 수 있습니다 "
224+
"(``sys.stdout``\\으로)."
191225

192226
#: ../Doc/library/telnetlib.rst:160
193227
msgid "Close the connection."
194-
msgstr ""
228+
msgstr "연결을 닫습니다."
195229

196230
#: ../Doc/library/telnetlib.rst:165
197231
msgid "Return the socket object used internally."
198-
msgstr ""
232+
msgstr "내부적으로 사용되는 소켓 객체를 반환합니다."
199233

200234
#: ../Doc/library/telnetlib.rst:170
201235
msgid "Return the file descriptor of the socket object used internally."
202-
msgstr ""
236+
msgstr "내부적으로 사용되는 소켓 객체의 파일 기술자를 반환합니다."
203237

204238
#: ../Doc/library/telnetlib.rst:175
205239
msgid ""
206240
"Write a byte string to the socket, doubling any IAC characters. This can "
207241
"block if the connection is blocked. May raise :exc:`OSError` if the "
208242
"connection is closed."
209243
msgstr ""
244+
"IAC 문자를 중복(doubling)해서 소켓에 바이트열을 기록합니다. 연결이 블록 되면 블록 할 수 있습니다. 연결이 닫히면 "
245+
":exc:`OSError`\\가 발생할 수 있습니다."
210246

211247
#: ../Doc/library/telnetlib.rst:179
212248
msgid ""
213249
"This method used to raise :exc:`socket.error`, which is now an alias of "
214250
":exc:`OSError`."
215-
msgstr ""
251+
msgstr "이 메서드는 방법은 :exc:`socket.error`\\를 발생시켰습니다. 이제는 :exc:`OSError`\\의 별칭입니다."
216252

217253
#: ../Doc/library/telnetlib.rst:186
218254
msgid "Interaction function, emulates a very dumb Telnet client."
219-
msgstr ""
255+
msgstr "상호 작용 함수, 매우 단순한 텔넷 클라이언트를 에뮬레이션합니다."
220256

221257
#: ../Doc/library/telnetlib.rst:191
222258
msgid "Multithreaded version of :meth:`interact`."
223-
msgstr ""
259+
msgstr ":meth:`interact`\\의 다중 스레드 버전."
224260

225261
#: ../Doc/library/telnetlib.rst:196
226262
msgid "Read until one from a list of a regular expressions matches."
227-
msgstr ""
263+
msgstr "정규식 리스트 중 하나가 일치할 때까지 읽습니다."
228264

229265
#: ../Doc/library/telnetlib.rst:198
230266
msgid ""
@@ -233,27 +269,36 @@ msgid ""
233269
"optional second argument is a timeout, in seconds; the default is to "
234270
"block indefinitely."
235271
msgstr ""
272+
"첫 번째 인자는 컴파일되었거나 (:ref:`정규식 객체 <re-objects>`) 컴파일되지 않은 (바이트열) 정규식의 리스트입니다. "
273+
"선택적 두 번째 인자는 초 단위의 시간제한입니다; 기본값은 무기한 블록 하는 것입니다."
236274

237275
#: ../Doc/library/telnetlib.rst:203
238276
msgid ""
239277
"Return a tuple of three items: the index in the list of the first regular"
240278
" expression that matches; the match object returned; and the bytes read "
241279
"up till and including the match."
242280
msgstr ""
281+
"세 항목의 튜플을 반환합니다: 일치하는 첫 번째 정규식의 리스트 인덱스; 반환된 일치 객체; 그리고 일치를 포함해서 그때까지 읽은 "
282+
"바이트열."
243283

244284
#: ../Doc/library/telnetlib.rst:207
245285
msgid ""
246286
"If end of file is found and no bytes were read, raise :exc:`EOFError`. "
247287
"Otherwise, when nothing matches, return ``(-1, None, data)`` where *data*"
248288
" is the bytes received so far (may be empty bytes if a timeout happened)."
249289
msgstr ""
290+
"파일의 끝이 발견되고 아무런 바이트도 읽히지 않았으면, :exc:`EOFError`\\를 발생시킵니다. 그렇지 않으면, 아무것도 일치하지"
291+
" 않을 때, ``(-1, None, data)``\\를 반환합니다. 여기서 *data*\\는 지금까지 받은 바이트열입니다 (시간 초과가 "
292+
"발생하면 빈 바이트열일 수 있습니다)."
250293

251294
#: ../Doc/library/telnetlib.rst:211
252295
msgid ""
253296
"If a regular expression ends with a greedy match (such as ``.*``) or if "
254297
"more than one expression can match the same input, the results are non-"
255298
"deterministic, and may depend on the I/O timing."
256299
msgstr ""
300+
"정규식이 탐욕적인 일치(가령 ``.*``)로 끝나거나 둘 이상의 정규식이 같은 입력과 일치 할 수 있으면, 결과는 비결정적이며, I/O "
301+
"타이밍에 따라 달라질 수 있습니다."
257302

258303
#: ../Doc/library/telnetlib.rst:218
259304
msgid ""
@@ -262,20 +307,14 @@ msgid ""
262307
"command (DO/DONT/WILL/WONT), option). No other action is done afterwards"
263308
" by telnetlib."
264309
msgstr ""
310+
"입력 흐름에서 텔넷 옵션을 읽을 때마다, 이 *callback*\\(설정되었다면)은 다음과 같은 매개 변수로 호출됩니다: "
311+
"callback(telnet socket, command (DO/DONT/WILL/WONT), option). telnetlib은 나중에"
312+
" 다른 작업을 수행하지 않습니다."
265313

266314
#: ../Doc/library/telnetlib.rst:226
267315
msgid "Telnet Example"
268-
msgstr ""
316+
msgstr "텔넷 예제"
269317

270318
#: ../Doc/library/telnetlib.rst:231
271319
msgid "A simple example illustrating typical use::"
272-
msgstr ""
273-
274-
#~ msgid ""
275-
#~ "A :class:`Telnet` object is a context"
276-
#~ " manager and can be used in a"
277-
#~ " :keyword:`with` statement. When the "
278-
#~ ":keyword:`with` block ends, the :meth:`close`"
279-
#~ " method is called::"
280-
#~ msgstr ""
281-
320+
msgstr "일반적인 사용을 보여주는 간단한 예제::"

0 commit comments

Comments
 (0)