-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathemail.header.po
More file actions
233 lines (203 loc) · 8.7 KB
/
email.header.po
File metadata and controls
233 lines (203 loc) · 8.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 1990-2020, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Python 2.7\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-02-09 18:46+0900\n"
"PO-Revision-Date: 2015-11-28 19:24+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/python-doc/python-27/language/pt_BR/)\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: ../../library/email.header.rst:2
msgid ":mod:`email.header`: Internationalized headers"
msgstr ""
#: ../../library/email.header.rst:8
msgid ""
":rfc:`2822` is the base standard that describes the format of email "
"messages. It derives from the older :rfc:`822` standard which came into "
"widespread use at a time when most email was composed of ASCII characters "
"only. :rfc:`2822` is a specification written assuming email contains only "
"7-bit ASCII characters."
msgstr ""
#: ../../library/email.header.rst:13
msgid ""
"Of course, as email has been deployed worldwide, it has become "
"internationalized, such that language specific character sets can now be "
"used in email messages. The base standard still requires email messages to "
"be transferred using only 7-bit ASCII characters, so a slew of RFCs have "
"been written describing how to encode email containing non-ASCII characters "
"into :rfc:`2822`\\ -compliant format. These RFCs include :rfc:`2045`, "
":rfc:`2046`, :rfc:`2047`, and :rfc:`2231`. The :mod:`email` package supports"
" these standards in its :mod:`email.header` and :mod:`email.charset` "
"modules."
msgstr ""
#: ../../library/email.header.rst:22
msgid ""
"If you want to include non-ASCII characters in your email headers, say in "
"the :mailheader:`Subject` or :mailheader:`To` fields, you should use the "
":class:`Header` class and assign the field in the "
":class:`~email.message.Message` object to an instance of :class:`Header` "
"instead of using a string for the header value. Import the :class:`Header` "
"class from the :mod:`email.header` module. For example::"
msgstr ""
#: ../../library/email.header.rst:39
msgid ""
"Notice here how we wanted the :mailheader:`Subject` field to contain a non-"
"ASCII character? We did this by creating a :class:`Header` instance and "
"passing in the character set that the byte string was encoded in. When the "
"subsequent :class:`~email.message.Message` instance was flattened, the "
":mailheader:`Subject` field was properly :rfc:`2047` encoded. MIME-aware "
"mail readers would show this header using the embedded ISO-8859-1 character."
msgstr ""
#: ../../library/email.header.rst:48
msgid "Here is the :class:`Header` class description:"
msgstr ""
#: ../../library/email.header.rst:53
msgid ""
"Create a MIME-compliant header that can contain strings in different "
"character sets."
msgstr ""
#: ../../library/email.header.rst:56
msgid ""
"Optional *s* is the initial header value. If ``None`` (the default), the "
"initial header value is not set. You can later append to the header with "
":meth:`append` method calls. *s* may be a byte string or a Unicode string, "
"but see the :meth:`append` documentation for semantics."
msgstr ""
#: ../../library/email.header.rst:61
msgid ""
"Optional *charset* serves two purposes: it has the same meaning as the "
"*charset* argument to the :meth:`append` method. It also sets the default "
"character set for all subsequent :meth:`append` calls that omit the "
"*charset* argument. If *charset* is not provided in the constructor (the "
"default), the ``us-ascii`` character set is used both as *s*'s initial "
"charset and as the default for subsequent :meth:`append` calls."
msgstr ""
#: ../../library/email.header.rst:68
msgid ""
"The maximum line length can be specified explicitly via *maxlinelen*. For "
"splitting the first line to a shorter value (to account for the field header"
" which isn't included in *s*, e.g. :mailheader:`Subject`) pass in the name "
"of the field in *header_name*. The default *maxlinelen* is 76, and the "
"default value for *header_name* is ``None``, meaning it is not taken into "
"account for the first line of a long, split header."
msgstr ""
#: ../../library/email.header.rst:75
msgid ""
"Optional *continuation_ws* must be :rfc:`2822`\\ -compliant folding "
"whitespace, and is usually either a space or a hard tab character. This "
"character will be prepended to continuation lines. *continuation_ws* "
"defaults to a single space character (\" \")."
msgstr ""
#: ../../library/email.header.rst:80
msgid ""
"Optional *errors* is passed straight through to the :meth:`append` method."
msgstr ""
#: ../../library/email.header.rst:85
msgid "Append the string *s* to the MIME header."
msgstr ""
#: ../../library/email.header.rst:87
msgid ""
"Optional *charset*, if given, should be a :class:`~email.charset.Charset` "
"instance (see :mod:`email.charset`) or the name of a character set, which "
"will be converted to a :class:`~email.charset.Charset` instance. A value of"
" ``None`` (the default) means that the *charset* given in the constructor is"
" used."
msgstr ""
#: ../../library/email.header.rst:93
msgid ""
"*s* may be a byte string or a Unicode string. If it is a byte string (i.e."
" ``isinstance(s, str)`` is true), then *charset* is the encoding of that "
"byte string, and a :exc:`UnicodeError` will be raised if the string cannot "
"be decoded with that character set."
msgstr ""
#: ../../library/email.header.rst:98
msgid ""
"If *s* is a Unicode string, then *charset* is a hint specifying the "
"character set of the characters in the string. In this case, when producing"
" an :rfc:`2822`\\ -compliant header using :rfc:`2047` rules, the Unicode "
"string will be encoded using the following charsets in order: ``us-ascii``, "
"the *charset* hint, ``utf-8``. The first character set to not provoke a "
":exc:`UnicodeError` is used."
msgstr ""
#: ../../library/email.header.rst:105
msgid ""
"Optional *errors* is passed through to any :func:`unicode` or "
":meth:`unicode.encode` call, and defaults to \"strict\"."
msgstr ""
#: ../../library/email.header.rst:111
msgid ""
"Encode a message header into an RFC-compliant format, possibly wrapping long"
" lines and encapsulating non-ASCII parts in base64 or quoted-printable "
"encodings. Optional *splitchars* is a string containing characters to split"
" long ASCII lines on, in rough support of :rfc:`2822`'s *highest level "
"syntactic breaks*. This doesn't affect :rfc:`2047` encoded lines."
msgstr ""
#: ../../library/email.header.rst:117
msgid ""
"The :class:`Header` class also provides a number of methods to support "
"standard operators and built-in functions."
msgstr ""
#: ../../library/email.header.rst:123
msgid "A synonym for :meth:`Header.encode`. Useful for ``str(aHeader)``."
msgstr ""
#: ../../library/email.header.rst:128
msgid ""
"A helper for the built-in :func:`unicode` function. Returns the header as a"
" Unicode string."
msgstr ""
#: ../../library/email.header.rst:134
msgid ""
"This method allows you to compare two :class:`Header` instances for "
"equality."
msgstr ""
#: ../../library/email.header.rst:140
msgid ""
"This method allows you to compare two :class:`Header` instances for "
"inequality."
msgstr ""
#: ../../library/email.header.rst:143
msgid ""
"The :mod:`email.header` module also provides the following convenient "
"functions."
msgstr ""
#: ../../library/email.header.rst:148
msgid ""
"Decode a message header value without converting the character set. The "
"header value is in *header*."
msgstr ""
#: ../../library/email.header.rst:151
msgid ""
"This function returns a list of ``(decoded_string, charset)`` pairs "
"containing each of the decoded parts of the header. *charset* is ``None`` "
"for non-encoded parts of the header, otherwise a lower case string "
"containing the name of the character set specified in the encoded string."
msgstr ""
#: ../../library/email.header.rst:156
msgid "Here's an example::"
msgstr "Here's an example::"
#: ../../library/email.header.rst:165
msgid ""
"Create a :class:`Header` instance from a sequence of pairs as returned by "
":func:`decode_header`."
msgstr ""
#: ../../library/email.header.rst:168
msgid ""
":func:`decode_header` takes a header value string and returns a sequence of "
"pairs of the format ``(decoded_string, charset)`` where *charset* is the "
"name of the character set."
msgstr ""
#: ../../library/email.header.rst:172
msgid ""
"This function takes one of those sequence of pairs and returns a "
":class:`Header` instance. Optional *maxlinelen*, *header_name*, and "
"*continuation_ws* are as in the :class:`Header` constructor."
msgstr ""