3
3
# This file is distributed under the same license as the Python package.
4
4
# FIRST AUTHOR <EMAIL@ADDRESS>, 2017.
5
5
#
6
- #, fuzzy
7
6
msgid ""
8
7
msgstr ""
9
8
"Project-Id-Version : Python 3.6\n "
10
9
"Report-Msgid-Bugs-To : \n "
11
10
"POT-Creation-Date : 2018-12-25 10:27+0900\n "
12
11
"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 "
15
14
"MIME-Version : 1.0\n "
16
15
"Content-Type : text/plain; charset=utf-8\n "
17
16
"Content-Transfer-Encoding : 8bit\n "
18
17
"Generated-By : Babel 2.6.0\n "
19
18
20
19
#: ../Doc/library/telnetlib.rst:2
21
20
msgid ":mod:`telnetlib` --- Telnet client"
22
- msgstr ""
21
+ msgstr ":mod:`telnetlib` --- 텔넷 클라이언트 "
23
22
24
23
#: ../Doc/library/telnetlib.rst:9
25
24
msgid "**Source code:** :source:`Lib/telnetlib.py`"
26
- msgstr ""
25
+ msgstr "**소스 코드:** :source:`Lib/telnetlib.py` "
27
26
28
27
#: ../Doc/library/telnetlib.rst:15
29
28
msgid ""
@@ -36,6 +35,10 @@ msgid ""
36
35
"traditionally not included in ``arpa/telnet.h``, see the module source "
37
36
"itself."
38
37
msgstr ""
38
+ ":mod:`telnetlib` 모듈은 텔넷 프로토콜을 구현하는 :class:`Telnet` 클래스를 제공합니다. 프로토콜에 대한 자세한 "
39
+ "내용은 :rfc:`854`\\ 를 참조하십시오. 또한, 프로토콜 문자(아래를 보십시오)와 텔넷 옵션을 위한 기호 상수를 제공합니다. 텔넷 "
40
+ "옵션의 기호 이름은 ``arpa/telnet.h``\\ 의 정의를 따르며, 선행 ``TELOPT_``\\ 는 제거됩니다. 전통적으로 "
41
+ "``arpa/telnet.h``\\ 에 포함되지 않는 옵션의 기호 이름에 대해서는 모듈 소스 자체를 참조하십시오."
39
42
40
43
#: ../Doc/library/telnetlib.rst:23
41
44
msgid ""
@@ -45,6 +48,10 @@ msgid ""
45
48
"EC (Erase Character), EL (Erase Line), GA (Go Ahead), SB (Subnegotiation "
46
49
"Begin)."
47
50
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)."
48
55
49
56
#: ../Doc/library/telnetlib.rst:31
50
57
msgid ""
@@ -57,10 +64,14 @@ msgid ""
57
64
" for blocking operations like the connection attempt (if not specified, "
58
65
"the global default timeout setting will be used)."
59
66
msgstr ""
67
+ ":class:`Telnet`\\ 는 텔넷 서버와의 연결을 나타냅니다. 인스턴스는 기본적으로 처음에는 연결되지 않습니다; 연결하려면 "
68
+ ":meth:`open` 메서드를 사용해야 합니다. 또는, 호스트 이름과 선택적 포트 번호를 생성자에게 전달할 수 있는데, 이때는 생성자가"
69
+ " 반환되기 전에 서버와 연결합니다. 선택적 *timeout* 매개 변수는 연결 시도와 같은 블로킹 연산에 대한 시간제한을 초로 지정합니다"
70
+ " (지정하지 않으면, 전역 기본 시간제한 설정이 사용됩니다)."
60
71
61
72
#: ../Doc/library/telnetlib.rst:40
62
73
msgid "Do not reopen an already connected instance."
63
- msgstr ""
74
+ msgstr "이미 연결된 인스턴스를 다시 열지 마십시오. "
64
75
65
76
#: ../Doc/library/telnetlib.rst:42
66
77
msgid ""
@@ -69,99 +80,116 @@ msgid ""
69
80
"they can return an empty string for other reasons. See the individual "
70
81
"descriptions below."
71
82
msgstr ""
83
+ "이 클래스에는 많은 :meth:`read_\\ *` 메서드가 있습니다. 이들 중 일부는 연결의 끝을 읽을 때 "
84
+ ":exc:`EOFError`\\ 를 발생시킴에 유의하십시오. 다른 이유로 빈 문자열을 반환할 수 있기 때문입니다. 아래의 개별 설명을 "
85
+ "참조하십시오."
72
86
73
87
#: ../Doc/library/telnetlib.rst:46
74
88
msgid ""
75
89
"A :class:`Telnet` object is a context manager and can be used in a "
76
90
":keyword:`with` statement. When the :keyword:`!with` block ends, the "
77
91
":meth:`close` method is called::"
78
92
msgstr ""
93
+ ":class:`Telnet` 객체는 컨텍스트 관리자이며 :keyword:`with` 문에서 사용할 수 있습니다. "
94
+ ":keyword:`!with` 블록이 끝날 때, :meth:`close` 메서드가 호출됩니다::"
79
95
80
96
#: ../Doc/library/telnetlib.rst:55
81
97
msgid "Context manager support added"
82
- msgstr ""
98
+ msgstr "컨텍스트 관리자 지원을 추가했습니다 "
83
99
84
100
#: ../Doc/library/telnetlib.rst:60
85
101
msgid ":rfc:`854` - Telnet Protocol Specification"
86
- msgstr ""
102
+ msgstr ":rfc:`854` - Telnet Protocol Specification "
87
103
88
104
#: ../Doc/library/telnetlib.rst:61
89
105
msgid "Definition of the Telnet protocol."
90
- msgstr ""
106
+ msgstr "텔넷 프로토콜의 정의. "
91
107
92
108
#: ../Doc/library/telnetlib.rst:67
93
109
msgid "Telnet Objects"
94
- msgstr ""
110
+ msgstr "텔넷 객체 "
95
111
96
112
#: ../Doc/library/telnetlib.rst:69
97
113
msgid ":class:`Telnet` instances have the following methods:"
98
- msgstr ""
114
+ msgstr ":class:`Telnet` 인스턴스에는 다음과 같은 메서드가 있습니다.: "
99
115
100
116
#: ../Doc/library/telnetlib.rst:74
101
117
msgid ""
102
118
"Read until a given byte string, *expected*, is encountered or until "
103
119
"*timeout* seconds have passed."
104
- msgstr ""
120
+ msgstr "주어진 바이트열 *expected* \\ 를 만나거나 *timeout* 초가 경과 할 때까지 읽습니다. "
105
121
106
122
#: ../Doc/library/telnetlib.rst:77
107
123
msgid ""
108
124
"When no match is found, return whatever is available instead, possibly "
109
125
"empty bytes. Raise :exc:`EOFError` if the connection is closed and no "
110
126
"cooked data is available."
111
127
msgstr ""
128
+ "일치하는 것을 찾을 수 없으면, 사용 가능한 것을 대신 반환합니다. 빈 바이트열도 가능합니다. 연결이 닫혀 있고 사용할 수 있는 요리된 "
129
+ "데이터가 없으면 :exc:`EOFError`\\ 를 발생시킵니다."
112
130
113
131
#: ../Doc/library/telnetlib.rst:84
114
132
msgid "Read all data until EOF as bytes; block until connection closed."
115
- msgstr ""
133
+ msgstr "EOF까지 모든 데이터를 바이트열로 읽습니다; 연결이 닫힐 때까지 블록합니다. "
116
134
117
135
#: ../Doc/library/telnetlib.rst:89
118
136
msgid ""
119
137
"Read at least one byte of cooked data unless EOF is hit. Return ``b''`` "
120
138
"if EOF is hit. Block if no data is immediately available."
121
139
msgstr ""
140
+ "EOF를 만나지 않으면 적어도 1바이트의 요리된 데이터를 읽습니다. EOF를 만나면 ``b''``\\ 를 반환합니다. 즉시 사용할 수 있는"
141
+ " 데이터가 없으면 블록합니다."
122
142
123
143
#: ../Doc/library/telnetlib.rst:95
124
144
msgid "Read everything that can be without blocking in I/O (eager)."
125
- msgstr ""
145
+ msgstr "I/O에서 블록하지 않고 읽을 수 있는 모든 것을 읽습니다 (eager). "
126
146
127
147
#: ../Doc/library/telnetlib.rst:97 ../Doc/library/telnetlib.rst:106
128
148
msgid ""
129
149
"Raise :exc:`EOFError` if connection closed and no cooked data available. "
130
150
"Return ``b''`` if no cooked data available otherwise. Do not block unless"
131
151
" in the midst of an IAC sequence."
132
152
msgstr ""
153
+ "연결이 닫혀 있고 사용할 수 있는 요리된 데이터가 없으면 :exc:`EOFError`\\ 를 발생시킵니다. 그렇지 않고 사용할 수 있는 "
154
+ "요리된 데이터가 없으면 ``b''``\\ 를 반환합니다. IAC 시퀀스의 중간에 있지 않으면 블록하지 않습니다."
133
155
134
156
#: ../Doc/library/telnetlib.rst:104
135
157
msgid "Read readily available data."
136
- msgstr ""
158
+ msgstr "쉽게 사용할 수 있는 데이터를 읽습니다. "
137
159
138
160
#: ../Doc/library/telnetlib.rst:113
139
161
msgid "Process and return data already in the queues (lazy)."
140
- msgstr ""
162
+ msgstr "이미 큐에 있는 데이터를 처리하고 반환합니다 (lazy). "
141
163
142
164
#: ../Doc/library/telnetlib.rst:115
143
165
msgid ""
144
166
"Raise :exc:`EOFError` if connection closed and no data available. Return "
145
167
"``b''`` if no cooked data available otherwise. Do not block unless in "
146
168
"the midst of an IAC sequence."
147
169
msgstr ""
170
+ "연결이 닫혀 있고 사용할 수 있는 데이터가 없으면 :exc:`EOFError`\\ 를 발생시킵니다. 그렇지 않고 사용할 수 있는 요리된 "
171
+ "데이터가 없으면 ``b''``\\ 를 반환합니다. IAC 시퀀스의 중간에 있지 않으면 블록하지 않습니다."
148
172
149
173
#: ../Doc/library/telnetlib.rst:122
150
174
msgid "Return any data available in the cooked queue (very lazy)."
151
- msgstr ""
175
+ msgstr "요리된 큐에 있는 모든 데이터를 반환합니다 (very lazy). "
152
176
153
177
#: ../Doc/library/telnetlib.rst:124
154
178
msgid ""
155
179
"Raise :exc:`EOFError` if connection closed and no data available. Return "
156
180
"``b''`` if no cooked data available otherwise. This method never blocks."
157
181
msgstr ""
182
+ "연결이 닫혀 있고 사용할 수 있는 데이터가 없으면 :exc:`EOFError`\\ 를 발생시킵니다. 그렇지 않고 사용할 수 있는 요리된 "
183
+ "데이터가 없으면 ``b''``\\ 를 반환합니다. 이 메서드는 절대 블록하지 않습니다."
158
184
159
185
#: ../Doc/library/telnetlib.rst:130
160
186
msgid ""
161
187
"Return the data collected between a SB/SE pair (suboption begin/end). The"
162
188
" callback should access these data when it was invoked with a ``SE`` "
163
189
"command. This method never blocks."
164
190
msgstr ""
191
+ "SB/SE 쌍(suboption begin/end)간에 수집된 데이터를 반환합니다. ``SE`` 명령으로 호출되었을 때 콜백은 이 "
192
+ "데이터에 액세스해야 합니다. 이 방법은 절대 블록하지 않습니다."
165
193
166
194
#: ../Doc/library/telnetlib.rst:137
167
195
msgid ""
@@ -171,60 +199,68 @@ msgid ""
171
199
" connection attempt (if not specified, the global default timeout setting"
172
200
" will be used)."
173
201
msgstr ""
202
+ "호스트에 연결합니다. 선택적 두 번째 인자는 포트 번호이며, 기본값은 표준 텔넷 포트(23)입니다. 선택적 *timeout* 매개 변수는"
203
+ " 연결 시도와 같은 블로킹 연산에 대한 시간제한을 초로 지정합니다 (지정하지 않으면, 전역 기본 시간제한 설정이 사용됩니다)."
174
204
175
205
#: ../Doc/library/telnetlib.rst:142
176
206
msgid "Do not try to reopen an already connected instance."
177
- msgstr ""
207
+ msgstr "이미 연결된 인스턴스를 다시 열려고 하지 마십시오. "
178
208
179
209
#: ../Doc/library/telnetlib.rst:147
180
210
msgid ""
181
211
"Print a debug message when the debug level is ``>`` 0. If extra arguments"
182
212
" are present, they are substituted in the message using the standard "
183
213
"string formatting operator."
184
214
msgstr ""
215
+ "디버그 수준이 ``>`` 0 일 때 디버그 메시지를 인쇄합니다. 추가 인자가 있으면, 표준 문자열 포매팅 연산자를 사용하여 메시지에 "
216
+ "치환됩니다."
185
217
186
218
#: ../Doc/library/telnetlib.rst:154
187
219
msgid ""
188
220
"Set the debug level. The higher the value of *debuglevel*, the more "
189
221
"debug output you get (on ``sys.stdout``)."
190
222
msgstr ""
223
+ "디버그 수준을 설정합니다. *debuglevel*\\ 의 값이 클수록, 더 많은 디버그 출력을 얻을 수 있습니다 "
224
+ "(``sys.stdout``\\ 으로)."
191
225
192
226
#: ../Doc/library/telnetlib.rst:160
193
227
msgid "Close the connection."
194
- msgstr ""
228
+ msgstr "연결을 닫습니다. "
195
229
196
230
#: ../Doc/library/telnetlib.rst:165
197
231
msgid "Return the socket object used internally."
198
- msgstr ""
232
+ msgstr "내부적으로 사용되는 소켓 객체를 반환합니다. "
199
233
200
234
#: ../Doc/library/telnetlib.rst:170
201
235
msgid "Return the file descriptor of the socket object used internally."
202
- msgstr ""
236
+ msgstr "내부적으로 사용되는 소켓 객체의 파일 기술자를 반환합니다. "
203
237
204
238
#: ../Doc/library/telnetlib.rst:175
205
239
msgid ""
206
240
"Write a byte string to the socket, doubling any IAC characters. This can "
207
241
"block if the connection is blocked. May raise :exc:`OSError` if the "
208
242
"connection is closed."
209
243
msgstr ""
244
+ "IAC 문자를 중복(doubling)해서 소켓에 바이트열을 기록합니다. 연결이 블록 되면 블록 할 수 있습니다. 연결이 닫히면 "
245
+ ":exc:`OSError`\\ 가 발생할 수 있습니다."
210
246
211
247
#: ../Doc/library/telnetlib.rst:179
212
248
msgid ""
213
249
"This method used to raise :exc:`socket.error`, which is now an alias of "
214
250
":exc:`OSError`."
215
- msgstr ""
251
+ msgstr "이 메서드는 방법은 :exc:`socket.error` \\ 를 발생시켰습니다. 이제는 :exc:`OSError` \\ 의 별칭입니다. "
216
252
217
253
#: ../Doc/library/telnetlib.rst:186
218
254
msgid "Interaction function, emulates a very dumb Telnet client."
219
- msgstr ""
255
+ msgstr "상호 작용 함수, 매우 단순한 텔넷 클라이언트를 에뮬레이션합니다. "
220
256
221
257
#: ../Doc/library/telnetlib.rst:191
222
258
msgid "Multithreaded version of :meth:`interact`."
223
- msgstr ""
259
+ msgstr ":meth:`interact` \\ 의 다중 스레드 버전. "
224
260
225
261
#: ../Doc/library/telnetlib.rst:196
226
262
msgid "Read until one from a list of a regular expressions matches."
227
- msgstr ""
263
+ msgstr "정규식 리스트 중 하나가 일치할 때까지 읽습니다. "
228
264
229
265
#: ../Doc/library/telnetlib.rst:198
230
266
msgid ""
@@ -233,27 +269,36 @@ msgid ""
233
269
"optional second argument is a timeout, in seconds; the default is to "
234
270
"block indefinitely."
235
271
msgstr ""
272
+ "첫 번째 인자는 컴파일되었거나 (:ref:`정규식 객체 <re-objects>`) 컴파일되지 않은 (바이트열) 정규식의 리스트입니다. "
273
+ "선택적 두 번째 인자는 초 단위의 시간제한입니다; 기본값은 무기한 블록 하는 것입니다."
236
274
237
275
#: ../Doc/library/telnetlib.rst:203
238
276
msgid ""
239
277
"Return a tuple of three items: the index in the list of the first regular"
240
278
" expression that matches; the match object returned; and the bytes read "
241
279
"up till and including the match."
242
280
msgstr ""
281
+ "세 항목의 튜플을 반환합니다: 일치하는 첫 번째 정규식의 리스트 인덱스; 반환된 일치 객체; 그리고 일치를 포함해서 그때까지 읽은 "
282
+ "바이트열."
243
283
244
284
#: ../Doc/library/telnetlib.rst:207
245
285
msgid ""
246
286
"If end of file is found and no bytes were read, raise :exc:`EOFError`. "
247
287
"Otherwise, when nothing matches, return ``(-1, None, data)`` where *data*"
248
288
" is the bytes received so far (may be empty bytes if a timeout happened)."
249
289
msgstr ""
290
+ "파일의 끝이 발견되고 아무런 바이트도 읽히지 않았으면, :exc:`EOFError`\\ 를 발생시킵니다. 그렇지 않으면, 아무것도 일치하지"
291
+ " 않을 때, ``(-1, None, data)``\\ 를 반환합니다. 여기서 *data*\\ 는 지금까지 받은 바이트열입니다 (시간 초과가 "
292
+ "발생하면 빈 바이트열일 수 있습니다)."
250
293
251
294
#: ../Doc/library/telnetlib.rst:211
252
295
msgid ""
253
296
"If a regular expression ends with a greedy match (such as ``.*``) or if "
254
297
"more than one expression can match the same input, the results are non-"
255
298
"deterministic, and may depend on the I/O timing."
256
299
msgstr ""
300
+ "정규식이 탐욕적인 일치(가령 ``.*``)로 끝나거나 둘 이상의 정규식이 같은 입력과 일치 할 수 있으면, 결과는 비결정적이며, I/O "
301
+ "타이밍에 따라 달라질 수 있습니다."
257
302
258
303
#: ../Doc/library/telnetlib.rst:218
259
304
msgid ""
@@ -262,20 +307,14 @@ msgid ""
262
307
"command (DO/DONT/WILL/WONT), option). No other action is done afterwards"
263
308
" by telnetlib."
264
309
msgstr ""
310
+ "입력 흐름에서 텔넷 옵션을 읽을 때마다, 이 *callback*\\ (설정되었다면)은 다음과 같은 매개 변수로 호출됩니다: "
311
+ "callback(telnet socket, command (DO/DONT/WILL/WONT), option). telnetlib은 나중에"
312
+ " 다른 작업을 수행하지 않습니다."
265
313
266
314
#: ../Doc/library/telnetlib.rst:226
267
315
msgid "Telnet Example"
268
- msgstr ""
316
+ msgstr "텔넷 예제 "
269
317
270
318
#: ../Doc/library/telnetlib.rst:231
271
319
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