Skip to content

Commit 2770797

Browse files
committed
#929 - remove fuzzy flags
1 parent 7b780ab commit 2770797

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

library/email.header.po

+12-4
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ msgstr ""
1717
"Generated-By: Babel 2.17.0\n"
1818

1919
#: ../../library/email.header.rst:2
20-
#, fuzzy
2120
msgid ":mod:`!email.header`: Internationalized headers"
22-
msgstr ":mod:`email.header`: 국제화된 헤더"
21+
msgstr ":mod:`!email.header`: 국제화된 헤더"
2322

2423
#: ../../library/email.header.rst:7
2524
msgid "**Source code:** :source:`Lib/email/header.py`"
@@ -100,6 +99,13 @@ msgid ""
10099
">>> msg.as_string()\n"
101100
"'Subject: =?iso-8859-1?q?p=F6stal?=\\n\\n'"
102101
msgstr ""
102+
">>> from email.message import Message\n"
103+
">>> from email.header import Header\n"
104+
">>> msg = Message()\n"
105+
">>> h = Header('p\\xf6stal', 'iso-8859-1')\n"
106+
">>> msg['Subject'] = h\n"
107+
">>> msg.as_string()\n"
108+
"'Subject: =?iso-8859-1?q?p=F6stal?=\\n\\n'"
103109

104110
#: ../../library/email.header.rst:50
105111
msgid ""
@@ -154,7 +160,6 @@ msgstr ""
154160
" 집합과 후속 :meth:`append` 호출의 기본값으로 사용됩니다."
155161

156162
#: ../../library/email.header.rst:77
157-
#, fuzzy
158163
msgid ""
159164
"The maximum line length can be specified explicitly via *maxlinelen*. "
160165
"For splitting the first line to a shorter value (to account for the field"
@@ -165,7 +170,7 @@ msgid ""
165170
msgstr ""
166171
"최대 줄 길이는 *maxlinelen*\\을 통해 명시적으로 지정할 수 있습니다. (*s*\\에 포함되지 않은 필드 헤더를 고려하기"
167172
" 위해, 예를 들어 :mailheader:`Subject`) 첫 번째 줄을 더 짧은 값으로 분할하려면 *header_name*\\에"
168-
" 필드 이름을 전달하십시오. 기본 *maxlinelen*\\76이고, *header_name*\\의 기본값은 "
173+
" 필드 이름을 전달하십시오. 기본 *maxlinelen*\\78이고, *header_name*\\의 기본값은 "
169174
"``None``\\입니다, 이는 긴 분할 헤더의 첫 번째 줄을 고려하지 않음을 의미합니다."
170175

171176
#: ../../library/email.header.rst:84
@@ -348,6 +353,9 @@ msgid ""
348353
">>> decode_header('=?iso-8859-1?q?p=F6stal?=')\n"
349354
"[(b'p\\xf6stal', 'iso-8859-1')]"
350355
msgstr ""
356+
">>> from email.header import decode_header\n"
357+
">>> decode_header('=?iso-8859-1?q?p=F6stal?=')\n"
358+
"[(b'p\\xf6stal', 'iso-8859-1')]"
351359

352360
#: ../../library/email.header.rst:195
353361
msgid ""

0 commit comments

Comments
 (0)