@@ -17,9 +17,8 @@ msgstr ""
17
17
"Generated-By : Babel 2.17.0\n "
18
18
19
19
#: ../../library/poplib.rst:2
20
- #, fuzzy
21
20
msgid ":mod:`!poplib` --- POP3 protocol client"
22
- msgstr ":mod:`poplib` --- POP3 프로토콜 클라이언트"
21
+ msgstr ":mod:`! poplib` --- POP3 프로토콜 클라이언트"
23
22
24
23
#: ../../library/poplib.rst:10
25
24
msgid "**Source code:** :source:`Lib/poplib.py`"
@@ -134,14 +133,13 @@ msgid "*context* parameter added."
134
133
msgstr "*context* 매개 변수가 추가되었습니다."
135
134
136
135
#: ../../library/poplib.rst:77
137
- #, fuzzy
138
136
msgid ""
139
137
"The class now supports hostname check with "
140
138
":attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* (see "
141
139
":const:`ssl.HAS_SNI`)."
142
140
msgstr ""
143
141
"클래스는 이제 :attr:`ssl.SSLContext.check_hostname`\\ 을 통한 호스트 이름 검사와 *서버 이름 "
144
- "표시(Server Name Indication)*\\ 를 지원합니다 (:data :`ssl.HAS_SNI`\\ 를 참조하십시오)."
142
+ "표시(Server Name Indication)*\\ 를 지원합니다 (:const :`ssl.HAS_SNI`\\ 를 참조하십시오)."
145
143
146
144
#: ../../library/poplib.rst:86
147
145
msgid "The deprecated *keyfile* and *certfile* parameters have been removed."
@@ -190,14 +188,12 @@ msgid "POP3 Objects"
190
188
msgstr "POP3 객체"
191
189
192
190
#: ../../library/poplib.rst:115
193
- #, fuzzy
194
191
msgid ""
195
192
"All POP3 commands are represented by methods of the same name, in "
196
193
"lowercase; most return the response text sent by the server."
197
194
msgstr "모든 POP3 명령은 소문자로 바뀐 같은 이름의 메서드로 표현됩니다; 대부분 서버에서 보낸 응답 텍스트를 반환합니다."
198
195
199
196
#: ../../library/poplib.rst:118
200
- #, fuzzy
201
197
msgid "A :class:`POP3` instance has the following methods:"
202
198
msgstr ":class:`POP3` 인스턴스에는 다음과 같은 메서드가 있습니다:"
203
199
@@ -232,12 +228,11 @@ msgid "Send user command, response should indicate that a password is required."
232
228
msgstr "user 명령을 보냅니다, 응답은 암호가 필요함을 가리켜야 합니다."
233
229
234
230
#: ../../library/poplib.rst:150
235
- #, fuzzy
236
231
msgid ""
237
232
"Send password, response includes message count and mailbox size. Note: "
238
233
"the mailbox on the server is locked until :meth:`~POP3.quit` is called."
239
234
msgstr ""
240
- "암호를 보냅니다, 응답에는 메시지 수와 우편함 크기가 포함됩니다. 참고: :meth:`~poplib .quit`\\ 가 호출될 때까지 "
235
+ "암호를 보냅니다, 응답에는 메시지 수와 우편함 크기가 포함됩니다. 참고: :meth:`~POP3 .quit`\\ 가 호출될 때까지 "
241
236
"서버의 우편함은 잠깁니다."
242
237
243
238
#: ../../library/poplib.rst:156
@@ -350,14 +345,13 @@ msgstr ""
350
345
"(잠재적으로 수명이 긴) 구조로 묶을 수 있도록 합니다. 모범 사례는 :ref:`ssl-security`\\ 을 읽으십시오."
351
346
352
347
#: ../../library/poplib.rst:241
353
- #, fuzzy
354
348
msgid ""
355
349
"This method supports hostname checking via "
356
350
":attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* (see "
357
351
":const:`ssl.HAS_SNI`)."
358
352
msgstr ""
359
353
"이 메서드는 :attr:`ssl.SSLContext.check_hostname`\\ 을 통한 호스트 이름 검사와 *서버 이름 "
360
- "표시(Server Name Indication)*\\ 를 지원합니다 (:data :`ssl.HAS_SNI`\\ 를 참조하십시오)"
354
+ "표시(Server Name Indication)*\\ 를 지원합니다 (:const :`ssl.HAS_SNI`\\ 를 참조하십시오)"
361
355
362
356
#: ../../library/poplib.rst:248
363
357
msgid ""
@@ -387,6 +381,15 @@ msgid ""
387
381
" for j in M.retr(i+1)[1]:\n"
388
382
" print(j)"
389
383
msgstr ""
384
+ "import getpass, poplib\n"
385
+ "\n"
386
+ "M = poplib.POP3('localhost')\n"
387
+ "M.user(getpass.getuser())\n"
388
+ "M.pass_(getpass.getpass())\n"
389
+ "numMessages = len(M.list()[1])\n"
390
+ "for i in range(numMessages):\n"
391
+ " for j in M.retr(i+1)[1]:\n"
392
+ " print(j)"
390
393
391
394
#: ../../library/poplib.rst:270
392
395
msgid ""
0 commit comments