1
+ # SOME DESCRIPTIVE TITLE.
1
2
# Copyright (C) 2001-2018, Python Software Foundation
2
- # For licence information, see README file.
3
+ # This file is distributed under the same license as the Python package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
3
5
#
6
+ #, fuzzy
4
7
msgid ""
5
8
msgstr ""
6
- "Project-Id-Version : Python 3.6 \n "
9
+ "Project-Id-Version : Python 3.7 \n "
7
10
"Report-Msgid-Bugs-To : \n "
8
- "POT-Creation-Date : 2017-04-02 22:11+0200 \n "
11
+ "POT-Creation-Date : 2018-11-29 16:06+0100 \n "
9
12
"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
10
13
"Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
11
- "
Language-Team :
FRENCH <[email protected] >\n "
12
- "Language : fr\n "
14
+ "
Language-Team :
LANGUAGE <[email protected] >\n "
13
15
"MIME-Version : 1.0\n "
14
16
"Content-Type : text/plain; charset=UTF-8\n "
15
17
"Content-Transfer-Encoding : 8bit\n "
16
18
17
- #: ../Doc/library/email.util .rst:2
19
+ #: ../Doc/library/email.utils .rst:2
18
20
msgid ":mod:`email.utils`: Miscellaneous utilities"
19
21
msgstr ""
20
22
21
- #: ../Doc/library/email.util .rst:7
23
+ #: ../Doc/library/email.utils .rst:7
22
24
msgid "**Source code:** :source:`Lib/email/utils.py`"
23
25
msgstr ""
24
26
25
- #: ../Doc/library/email.util .rst:11
27
+ #: ../Doc/library/email.utils .rst:11
26
28
msgid ""
27
29
"There are a couple of useful utilities provided in the :mod:`email.utils` "
28
30
"module:"
29
31
msgstr ""
30
32
31
- #: ../Doc/library/email.util .rst:16
33
+ #: ../Doc/library/email.utils .rst:16
32
34
msgid ""
33
35
"Return local time as an aware datetime object. If called without arguments, "
34
36
"return current time. Otherwise *dt* argument should be a :class:`~datetime."
@@ -42,7 +44,7 @@ msgid ""
42
44
"specified time."
43
45
msgstr ""
44
46
45
- #: ../Doc/library/email.util .rst:32
47
+ #: ../Doc/library/email.utils .rst:32
46
48
msgid ""
47
49
"Returns a string suitable for an :rfc:`2822`\\ -compliant :mailheader:"
48
50
"`Message-ID` header. Optional *idstring* if given, is a string used to "
@@ -53,68 +55,68 @@ msgid ""
53
55
"consistent domain name across multiple hosts."
54
56
msgstr ""
55
57
56
- #: ../Doc/library/email.util .rst:40
58
+ #: ../Doc/library/email.utils .rst:40
57
59
msgid "Added the *domain* keyword."
58
60
msgstr ""
59
61
60
- #: ../Doc/library/email.util .rst:44
62
+ #: ../Doc/library/email.utils .rst:44
61
63
msgid ""
62
64
"The remaining functions are part of the legacy (``Compat32``) email API. "
63
65
"There is no need to directly use these with the new API, since the parsing "
64
66
"and formatting they provide is done automatically by the header parsing "
65
67
"machinery of the new API."
66
68
msgstr ""
67
69
68
- #: ../Doc/library/email.util .rst:52
70
+ #: ../Doc/library/email.utils .rst:52
69
71
msgid ""
70
72
"Return a new string with backslashes in *str* replaced by two backslashes, "
71
73
"and double quotes replaced by backslash-double quote."
72
74
msgstr ""
73
75
74
- #: ../Doc/library/email.util .rst:58
76
+ #: ../Doc/library/email.utils .rst:58
75
77
msgid ""
76
78
"Return a new string which is an *unquoted* version of *str*. If *str* ends "
77
79
"and begins with double quotes, they are stripped off. Likewise if *str* "
78
80
"ends and begins with angle brackets, they are stripped off."
79
81
msgstr ""
80
82
81
- #: ../Doc/library/email.util .rst:65
83
+ #: ../Doc/library/email.utils .rst:65
82
84
msgid ""
83
85
"Parse address -- which should be the value of some address-containing field "
84
86
"such as :mailheader:`To` or :mailheader:`Cc` -- into its constituent "
85
87
"*realname* and *email address* parts. Returns a tuple of that information, "
86
88
"unless the parse fails, in which case a 2-tuple of ``('', '')`` is returned."
87
89
msgstr ""
88
90
89
- #: ../Doc/library/email.util .rst:73
91
+ #: ../Doc/library/email.utils .rst:73
90
92
msgid ""
91
93
"The inverse of :meth:`parseaddr`, this takes a 2-tuple of the form "
92
94
"``(realname, email_address)`` and returns the string value suitable for a :"
93
95
"mailheader:`To` or :mailheader:`Cc` header. If the first element of *pair* "
94
96
"is false, then the second element is returned unmodified."
95
97
msgstr ""
96
98
97
- #: ../Doc/library/email.util .rst:78
99
+ #: ../Doc/library/email.utils .rst:78
98
100
msgid ""
99
101
"Optional *charset* is the character set that will be used in the :rfc:`2047` "
100
102
"encoding of the ``realname`` if the ``realname`` contains non-ASCII "
101
103
"characters. Can be an instance of :class:`str` or a :class:`~email.charset."
102
104
"Charset`. Defaults to ``utf-8``."
103
105
msgstr ""
104
106
105
- #: ../Doc/library/email.util .rst:83
107
+ #: ../Doc/library/email.utils .rst:83
106
108
msgid "Added the *charset* option."
107
109
msgstr ""
108
110
109
- #: ../Doc/library/email.util .rst:89
111
+ #: ../Doc/library/email.utils .rst:89
110
112
msgid ""
111
113
"This method returns a list of 2-tuples of the form returned by "
112
114
"``parseaddr()``. *fieldvalues* is a sequence of header field values as might "
113
115
"be returned by :meth:`Message.get_all <email.message.Message.get_all>`. "
114
116
"Here's a simple example that gets all the recipients of a message::"
115
117
msgstr ""
116
118
117
- #: ../Doc/library/email.util .rst:105
119
+ #: ../Doc/library/email.utils .rst:105
118
120
msgid ""
119
121
"Attempts to parse a date according to the rules in :rfc:`2822`. however, "
120
122
"some mailers don't follow that format as specified, so :func:`parsedate` "
@@ -125,7 +127,7 @@ msgid ""
125
127
"returned. Note that indexes 6, 7, and 8 of the result tuple are not usable."
126
128
msgstr ""
127
129
128
- #: ../Doc/library/email.util .rst:116
130
+ #: ../Doc/library/email.utils .rst:116
129
131
msgid ""
130
132
"Performs the same function as :func:`parsedate`, but returns either ``None`` "
131
133
"or a 10-tuple; the first 9 elements make up a tuple that can be passed "
@@ -136,7 +138,7 @@ msgid ""
136
138
"not usable."
137
139
msgstr ""
138
140
139
- #: ../Doc/library/email.util .rst:126
141
+ #: ../Doc/library/email.utils .rst:126
140
142
msgid ""
141
143
"The inverse of :func:`format_datetime`. Performs the same function as :func:"
142
144
"`parsedate`, but on success returns a :mod:`~datetime.datetime`. If the "
@@ -148,41 +150,41 @@ msgid ""
148
150
"corresponding a :class:`~datetime.timezone` :class:`~datetime.tzinfo`."
149
151
msgstr ""
150
152
151
- #: ../Doc/library/email.util .rst:140
153
+ #: ../Doc/library/email.utils .rst:140
152
154
msgid ""
153
155
"Turn a 10-tuple as returned by :func:`parsedate_tz` into a UTC timestamp "
154
156
"(seconds since the Epoch). If the timezone item in the tuple is ``None``, "
155
157
"assume local time."
156
158
msgstr ""
157
159
158
- #: ../Doc/library/email.util .rst:147
160
+ #: ../Doc/library/email.utils .rst:147
159
161
msgid "Returns a date string as per :rfc:`2822`, e.g.::"
160
162
msgstr ""
161
163
162
- #: ../Doc/library/email.util .rst:151
164
+ #: ../Doc/library/email.utils .rst:151
163
165
msgid ""
164
166
"Optional *timeval* if given is a floating point time value as accepted by :"
165
167
"func:`time.gmtime` and :func:`time.localtime`, otherwise the current time is "
166
168
"used."
167
169
msgstr ""
168
170
169
- #: ../Doc/library/email.util .rst:155
171
+ #: ../Doc/library/email.utils .rst:155
170
172
msgid ""
171
173
"Optional *localtime* is a flag that when ``True``, interprets *timeval*, and "
172
174
"returns a date relative to the local timezone instead of UTC, properly "
173
175
"taking daylight savings time into account. The default is ``False`` meaning "
174
176
"UTC is used."
175
177
msgstr ""
176
178
177
- #: ../Doc/library/email.util .rst:160
179
+ #: ../Doc/library/email.utils .rst:160
178
180
msgid ""
179
181
"Optional *usegmt* is a flag that when ``True``, outputs a date string with "
180
182
"the timezone as an ascii string ``GMT``, rather than a numeric ``-0000``. "
181
183
"This is needed for some protocols (such as HTTP). This only applies when "
182
184
"*localtime* is ``False``. The default is ``False``."
183
185
msgstr ""
184
186
185
- #: ../Doc/library/email.util .rst:168
187
+ #: ../Doc/library/email.utils .rst:168
186
188
msgid ""
187
189
"Like ``formatdate``, but the input is a :mod:`datetime` instance. If it is "
188
190
"a naive datetime, it is assumed to be \" UTC with no information about the "
@@ -194,11 +196,11 @@ msgid ""
194
196
"date headers."
195
197
msgstr ""
196
198
197
- #: ../Doc/library/email.util .rst:182
199
+ #: ../Doc/library/email.utils .rst:182
198
200
msgid "Decode the string *s* according to :rfc:`2231`."
199
201
msgstr ""
200
202
201
- #: ../Doc/library/email.util .rst:187
203
+ #: ../Doc/library/email.utils .rst:187
202
204
msgid ""
203
205
"Encode the string *s* according to :rfc:`2231`. Optional *charset* and "
204
206
"*language*, if given is the character set name and language name to use. If "
@@ -207,7 +209,7 @@ msgid ""
207
209
"*language*."
208
210
msgstr ""
209
211
210
- #: ../Doc/library/email.util .rst:195
212
+ #: ../Doc/library/email.utils .rst:195
211
213
msgid ""
212
214
"When a header parameter is encoded in :rfc:`2231` format, :meth:`Message."
213
215
"get_param <email.message.Message.get_param>` may return a 3-tuple containing "
@@ -219,23 +221,23 @@ msgid ""
219
221
"defaults to ``'us-ascii'``."
220
222
msgstr ""
221
223
222
- #: ../Doc/library/email.util .rst:204
224
+ #: ../Doc/library/email.utils .rst:204
223
225
msgid ""
224
226
"For convenience, if the *value* passed to :func:`collapse_rfc2231_value` is "
225
227
"not a tuple, it should be a string and it is returned unquoted."
226
228
msgstr ""
227
229
228
- #: ../Doc/library/email.util .rst:210
230
+ #: ../Doc/library/email.utils .rst:210
229
231
msgid ""
230
232
"Decode parameters list according to :rfc:`2231`. *params* is a sequence of "
231
233
"2-tuples containing elements of the form ``(content-type, string-value)``."
232
234
msgstr ""
233
235
234
- #: ../Doc/library/email.util .rst:215
236
+ #: ../Doc/library/email.utils .rst:215
235
237
msgid "Footnotes"
236
- msgstr "Notes "
238
+ msgstr ""
237
239
238
- #: ../Doc/library/email.util .rst:216
240
+ #: ../Doc/library/email.utils .rst:216
239
241
msgid ""
240
242
"Note that the sign of the timezone offset is the opposite of the sign of the "
241
243
"``time.timezone`` variable for the same timezone; the latter variable "
0 commit comments