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-07-08 11:36+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 : Changhyun An <88soldieron@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.5.1\n "
19
18
20
19
#: ../Doc/library/urllib.error.rst:2
21
20
msgid ":mod:`urllib.error` --- Exception classes raised by urllib.request"
22
- msgstr ""
21
+ msgstr ":mod:`urllib.error` --- urllib.request에 의해 발생하는 예외 클래스 "
23
22
24
23
#: ../Doc/library/urllib.error.rst:10
25
24
msgid "**Source code:** :source:`Lib/urllib/error.py`"
26
- msgstr ""
25
+ msgstr "**소스 코드:** :source:`Lib/urllib/error.py` "
27
26
28
27
#: ../Doc/library/urllib.error.rst:14
29
28
msgid ""
30
29
"The :mod:`urllib.error` module defines the exception classes for "
31
30
"exceptions raised by :mod:`urllib.request`. The base exception class is "
32
31
":exc:`URLError`."
33
32
msgstr ""
33
+ ":mod:`urllib.error`\\ 모듈은 :mod:`urllib.request`\\ 에 의해 발생하는 예외에 대한 예외 클래스를 정의합니다. "
34
+ "베이스 예외 클래스는 :exc:`URLError`\\ 입니다."
34
35
35
36
#: ../Doc/library/urllib.error.rst:17
36
37
msgid "The following exceptions are raised by :mod:`urllib.error` as appropriate:"
37
- msgstr ""
38
+ msgstr ":mod:`urllib.error` \\ 에 의해 다음과 같은 예외가 적절하게 발생합니다. "
38
39
39
40
#: ../Doc/library/urllib.error.rst:21
40
41
msgid ""
41
42
"The handlers raise this exception (or derived exceptions) when they run "
42
43
"into a problem. It is a subclass of :exc:`OSError`."
43
44
msgstr ""
45
+ "처리기가 문제에 봉착하는 경우, 처리기는 해당 예외(또는 파생된 예외)를 발생시킵니다. "
46
+ "이 예외는 :exc:`OSError`\\ 의 서브 클래스입니다."
44
47
45
48
#: ../Doc/library/urllib.error.rst:26
46
49
msgid ""
47
50
"The reason for this error. It can be a message string or another "
48
51
"exception instance."
49
52
msgstr ""
53
+ "이 에러가 발생한 원인입니다. 메시지 문자열이거나 다른 예외 인스턴스가 될 수 있습니다."
50
54
51
55
#: ../Doc/library/urllib.error.rst:29
52
56
msgid ""
53
57
":exc:`URLError` has been made a subclass of :exc:`OSError` instead of "
54
58
":exc:`IOError`."
55
59
msgstr ""
60
+ ":exc:`URLError`\\ 는 :exc:`IOError`\\ 가 아닌, :exc:`OSError`\\ 의 서브 클래스가 되었습니다."
56
61
57
62
#: ../Doc/library/urllib.error.rst:36
58
63
msgid ""
@@ -62,23 +67,29 @@ msgid ""
62
67
"This is useful when handling exotic HTTP errors, such as requests for "
63
68
"authentication."
64
69
msgstr ""
70
+ ":exc:`HTTPError`\\ 는 :exc:`URLError`\\ 의 서브 클래스로 예외 클래스이긴 하지만, "
71
+ "예외가 아닌 파일류 반환 값(:func:`~urllib.request.urlopen`\\ 의 반환 값과 동일한 값)으로도 "
72
+ "작동할 수 있습니다. 이 방법은 인증 요청 같은 독특한(exotic) HTTP 에러를 처리할 때 유용합니다."
65
73
66
74
#: ../Doc/library/urllib.error.rst:44
67
75
msgid ""
68
76
"An HTTP status code as defined in :rfc:`2616`. This numeric value "
69
77
"corresponds to a value found in the dictionary of codes as found in "
70
78
":attr:`http.server.BaseHTTPRequestHandler.responses`."
71
79
msgstr ""
80
+ ":rfc:`2616`\\ 에 정의된 HTTP 상태 코드입니다. 이 숫자 값은 "
81
+ ":attr:`http.server.BaseHTTPRequestHandler.responses`\\ "
82
+ "에서 찾을 수 있는 상태 코드 딕셔너리에 있는 값에 해당합니다."
72
83
73
84
#: ../Doc/library/urllib.error.rst:50
74
85
msgid "This is usually a string explaining the reason for this error."
75
- msgstr ""
86
+ msgstr "일반적으로 이 에러의 원인을 설명하는 문자열입니다. "
76
87
77
88
#: ../Doc/library/urllib.error.rst:54
78
89
msgid ""
79
90
"The HTTP response headers for the HTTP request that caused the "
80
91
":exc:`HTTPError`."
81
- msgstr ""
92
+ msgstr ":exc:`HTTPError` \\ 를 발생시킨 HTTP 요청의 응답 헤더입니다. "
82
93
83
94
#: ../Doc/library/urllib.error.rst:61
84
95
msgid ""
@@ -88,13 +99,6 @@ msgid ""
88
99
":attr:`content` attribute stores the downloaded (and supposedly "
89
100
"truncated) data."
90
101
msgstr ""
91
-
92
- #~ msgid ""
93
- #~ "An HTTP status code as defined in"
94
- #~ " `RFC 2616 <http://www.faqs.org/rfcs/rfc2616.html>`_."
95
- #~ " This numeric value corresponds to a"
96
- #~ " value found in the dictionary of "
97
- #~ "codes as found in "
98
- #~ ":attr:`http.server.BaseHTTPRequestHandler.responses`."
99
- #~ msgstr ""
100
-
102
+ "이 예외는 다운로드받은 데이터양이 *Content-Length* 헤더 값을 통해 예상한 양보다 적은 것을 "
103
+ ":func:`~urllib.request.urlretrieve`\\ 함수가 감지했을 때 발생합니다. "
104
+ ":attr:`content`\\ 어트리뷰트는 다운로드받은 (그리고 아마도 잘린) 데이터를 저장합니다."
0 commit comments