@@ -17,9 +17,8 @@ msgstr ""
1717"Generated-By : Babel 2.17.0\n "
1818
1919#: ../../library/poplib.rst:2
20- #, fuzzy
2120msgid ":mod:`!poplib` --- POP3 protocol client"
22- msgstr ":mod:`poplib` --- POP3 프로토콜 클라이언트"
21+ msgstr ":mod:`! poplib` --- POP3 프로토콜 클라이언트"
2322
2423#: ../../library/poplib.rst:10
2524msgid "**Source code:** :source:`Lib/poplib.py`"
@@ -134,14 +133,13 @@ msgid "*context* parameter added."
134133msgstr "*context* 매개 변수가 추가되었습니다."
135134
136135#: ../../library/poplib.rst:77
137- #, fuzzy
138136msgid ""
139137"The class now supports hostname check with "
140138":attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* (see "
141139":const:`ssl.HAS_SNI`)."
142140msgstr ""
143141"클래스는 이제 :attr:`ssl.SSLContext.check_hostname`\\ 을 통한 호스트 이름 검사와 *서버 이름 "
144- "표시(Server Name Indication)*\\ 를 지원합니다 (:data :`ssl.HAS_SNI`\\ 를 참조하십시오)."
142+ "표시(Server Name Indication)*\\ 를 지원합니다 (:const :`ssl.HAS_SNI`\\ 를 참조하십시오)."
145143
146144#: ../../library/poplib.rst:86
147145msgid "The deprecated *keyfile* and *certfile* parameters have been removed."
@@ -190,14 +188,12 @@ msgid "POP3 Objects"
190188msgstr "POP3 객체"
191189
192190#: ../../library/poplib.rst:115
193- #, fuzzy
194191msgid ""
195192"All POP3 commands are represented by methods of the same name, in "
196193"lowercase; most return the response text sent by the server."
197194msgstr "모든 POP3 명령은 소문자로 바뀐 같은 이름의 메서드로 표현됩니다; 대부분 서버에서 보낸 응답 텍스트를 반환합니다."
198195
199196#: ../../library/poplib.rst:118
200- #, fuzzy
201197msgid "A :class:`POP3` instance has the following methods:"
202198msgstr ":class:`POP3` 인스턴스에는 다음과 같은 메서드가 있습니다:"
203199
@@ -232,12 +228,11 @@ msgid "Send user command, response should indicate that a password is required."
232228msgstr "user 명령을 보냅니다, 응답은 암호가 필요함을 가리켜야 합니다."
233229
234230#: ../../library/poplib.rst:150
235- #, fuzzy
236231msgid ""
237232"Send password, response includes message count and mailbox size. Note: "
238233"the mailbox on the server is locked until :meth:`~POP3.quit` is called."
239234msgstr ""
240- "암호를 보냅니다, 응답에는 메시지 수와 우편함 크기가 포함됩니다. 참고: :meth:`~poplib .quit`\\ 가 호출될 때까지 "
235+ "암호를 보냅니다, 응답에는 메시지 수와 우편함 크기가 포함됩니다. 참고: :meth:`~POP3 .quit`\\ 가 호출될 때까지 "
241236"서버의 우편함은 잠깁니다."
242237
243238#: ../../library/poplib.rst:156
@@ -350,14 +345,13 @@ msgstr ""
350345"(잠재적으로 수명이 긴) 구조로 묶을 수 있도록 합니다. 모범 사례는 :ref:`ssl-security`\\ 을 읽으십시오."
351346
352347#: ../../library/poplib.rst:241
353- #, fuzzy
354348msgid ""
355349"This method supports hostname checking via "
356350":attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* (see "
357351":const:`ssl.HAS_SNI`)."
358352msgstr ""
359353"이 메서드는 :attr:`ssl.SSLContext.check_hostname`\\ 을 통한 호스트 이름 검사와 *서버 이름 "
360- "표시(Server Name Indication)*\\ 를 지원합니다 (:data :`ssl.HAS_SNI`\\ 를 참조하십시오)"
354+ "표시(Server Name Indication)*\\ 를 지원합니다 (:const :`ssl.HAS_SNI`\\ 를 참조하십시오)"
361355
362356#: ../../library/poplib.rst:248
363357msgid ""
@@ -387,6 +381,15 @@ msgid ""
387381" for j in M.retr(i+1)[1]:\n"
388382" print(j)"
389383msgstr ""
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)"
390393
391394#: ../../library/poplib.rst:270
392395msgid ""
0 commit comments