Skip to content

Commit 4ec0e72

Browse files
ach0oflowdas
authored andcommitted
Closes #377 - translate library/urllib.error.po
* Translate library/urllib.error.po * Revise library/urllib.error.po translation
1 parent a2fd4ba commit 4ec0e72

File tree

1 file changed

+22
-18
lines changed

1 file changed

+22
-18
lines changed

library/urllib.error.po

Lines changed: 22 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,56 +3,61 @@
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-07-08 11:36+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: Changhyun An <88soldieron@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.5.1\n"
1918

2019
#: ../Doc/library/urllib.error.rst:2
2120
msgid ":mod:`urllib.error` --- Exception classes raised by urllib.request"
22-
msgstr ""
21+
msgstr ":mod:`urllib.error` --- urllib.request에 의해 발생하는 예외 클래스"
2322

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

2827
#: ../Doc/library/urllib.error.rst:14
2928
msgid ""
3029
"The :mod:`urllib.error` module defines the exception classes for "
3130
"exceptions raised by :mod:`urllib.request`. The base exception class is "
3231
":exc:`URLError`."
3332
msgstr ""
33+
":mod:`urllib.error`\\모듈은 :mod:`urllib.request`\\에 의해 발생하는 예외에 대한 예외 클래스를 정의합니다. "
34+
"베이스 예외 클래스는 :exc:`URLError`\\입니다."
3435

3536
#: ../Doc/library/urllib.error.rst:17
3637
msgid "The following exceptions are raised by :mod:`urllib.error` as appropriate:"
37-
msgstr ""
38+
msgstr ":mod:`urllib.error`\\에 의해 다음과 같은 예외가 적절하게 발생합니다."
3839

3940
#: ../Doc/library/urllib.error.rst:21
4041
msgid ""
4142
"The handlers raise this exception (or derived exceptions) when they run "
4243
"into a problem. It is a subclass of :exc:`OSError`."
4344
msgstr ""
45+
"처리기가 문제에 봉착하는 경우, 처리기는 해당 예외(또는 파생된 예외)를 발생시킵니다. "
46+
"이 예외는 :exc:`OSError`\\의 서브 클래스입니다."
4447

4548
#: ../Doc/library/urllib.error.rst:26
4649
msgid ""
4750
"The reason for this error. It can be a message string or another "
4851
"exception instance."
4952
msgstr ""
53+
"이 에러가 발생한 원인입니다. 메시지 문자열이거나 다른 예외 인스턴스가 될 수 있습니다."
5054

5155
#: ../Doc/library/urllib.error.rst:29
5256
msgid ""
5357
":exc:`URLError` has been made a subclass of :exc:`OSError` instead of "
5458
":exc:`IOError`."
5559
msgstr ""
60+
":exc:`URLError`\\는 :exc:`IOError`\\가 아닌, :exc:`OSError`\\의 서브 클래스가 되었습니다."
5661

5762
#: ../Doc/library/urllib.error.rst:36
5863
msgid ""
@@ -62,23 +67,29 @@ msgid ""
6267
"This is useful when handling exotic HTTP errors, such as requests for "
6368
"authentication."
6469
msgstr ""
70+
":exc:`HTTPError`\\는 :exc:`URLError`\\의 서브 클래스로 예외 클래스이긴 하지만, "
71+
"예외가 아닌 파일류 반환 값(:func:`~urllib.request.urlopen`\\의 반환 값과 동일한 값)으로도 "
72+
"작동할 수 있습니다. 이 방법은 인증 요청 같은 독특한(exotic) HTTP 에러를 처리할 때 유용합니다."
6573

6674
#: ../Doc/library/urllib.error.rst:44
6775
msgid ""
6876
"An HTTP status code as defined in :rfc:`2616`. This numeric value "
6977
"corresponds to a value found in the dictionary of codes as found in "
7078
":attr:`http.server.BaseHTTPRequestHandler.responses`."
7179
msgstr ""
80+
":rfc:`2616`\\에 정의된 HTTP 상태 코드입니다. 이 숫자 값은 "
81+
":attr:`http.server.BaseHTTPRequestHandler.responses`\\"
82+
"에서 찾을 수 있는 상태 코드 딕셔너리에 있는 값에 해당합니다."
7283

7384
#: ../Doc/library/urllib.error.rst:50
7485
msgid "This is usually a string explaining the reason for this error."
75-
msgstr ""
86+
msgstr "일반적으로 이 에러의 원인을 설명하는 문자열입니다."
7687

7788
#: ../Doc/library/urllib.error.rst:54
7889
msgid ""
7990
"The HTTP response headers for the HTTP request that caused the "
8091
":exc:`HTTPError`."
81-
msgstr ""
92+
msgstr ":exc:`HTTPError`\\를 발생시킨 HTTP 요청의 응답 헤더입니다."
8293

8394
#: ../Doc/library/urllib.error.rst:61
8495
msgid ""
@@ -88,13 +99,6 @@ msgid ""
8899
":attr:`content` attribute stores the downloaded (and supposedly "
89100
"truncated) data."
90101
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

Comments
 (0)