diff --git a/library/email.util.po b/library/email.utils.po similarity index 86% rename from library/email.util.po rename to library/email.utils.po index d6bcb1e9..778e2496 100644 --- a/library/email.util.po +++ b/library/email.utils.po @@ -1,34 +1,36 @@ +# SOME DESCRIPTIVE TITLE. # Copyright (C) 2001-2018, Python Software Foundation -# For licence information, see README file. +# This file is distributed under the same license as the Python package. +# FIRST AUTHOR , YEAR. # +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Python 3.6\n" +"Project-Id-Version: Python 3.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-02 22:11+0200\n" +"POT-Creation-Date: 2018-11-29 16:06+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" -"Language-Team: FRENCH \n" -"Language: fr\n" +"Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../Doc/library/email.util.rst:2 +#: ../Doc/library/email.utils.rst:2 msgid ":mod:`email.utils`: Miscellaneous utilities" msgstr "" -#: ../Doc/library/email.util.rst:7 +#: ../Doc/library/email.utils.rst:7 msgid "**Source code:** :source:`Lib/email/utils.py`" msgstr "" -#: ../Doc/library/email.util.rst:11 +#: ../Doc/library/email.utils.rst:11 msgid "" "There are a couple of useful utilities provided in the :mod:`email.utils` " "module:" msgstr "" -#: ../Doc/library/email.util.rst:16 +#: ../Doc/library/email.utils.rst:16 msgid "" "Return local time as an aware datetime object. If called without arguments, " "return current time. Otherwise *dt* argument should be a :class:`~datetime." @@ -42,7 +44,7 @@ msgid "" "specified time." msgstr "" -#: ../Doc/library/email.util.rst:32 +#: ../Doc/library/email.utils.rst:32 msgid "" "Returns a string suitable for an :rfc:`2822`\\ -compliant :mailheader:" "`Message-ID` header. Optional *idstring* if given, is a string used to " @@ -53,11 +55,11 @@ msgid "" "consistent domain name across multiple hosts." msgstr "" -#: ../Doc/library/email.util.rst:40 +#: ../Doc/library/email.utils.rst:40 msgid "Added the *domain* keyword." msgstr "" -#: ../Doc/library/email.util.rst:44 +#: ../Doc/library/email.utils.rst:44 msgid "" "The remaining functions are part of the legacy (``Compat32``) email API. " "There is no need to directly use these with the new API, since the parsing " @@ -65,20 +67,20 @@ msgid "" "machinery of the new API." msgstr "" -#: ../Doc/library/email.util.rst:52 +#: ../Doc/library/email.utils.rst:52 msgid "" "Return a new string with backslashes in *str* replaced by two backslashes, " "and double quotes replaced by backslash-double quote." msgstr "" -#: ../Doc/library/email.util.rst:58 +#: ../Doc/library/email.utils.rst:58 msgid "" "Return a new string which is an *unquoted* version of *str*. If *str* ends " "and begins with double quotes, they are stripped off. Likewise if *str* " "ends and begins with angle brackets, they are stripped off." msgstr "" -#: ../Doc/library/email.util.rst:65 +#: ../Doc/library/email.utils.rst:65 msgid "" "Parse address -- which should be the value of some address-containing field " "such as :mailheader:`To` or :mailheader:`Cc` -- into its constituent " @@ -86,7 +88,7 @@ msgid "" "unless the parse fails, in which case a 2-tuple of ``('', '')`` is returned." msgstr "" -#: ../Doc/library/email.util.rst:73 +#: ../Doc/library/email.utils.rst:73 msgid "" "The inverse of :meth:`parseaddr`, this takes a 2-tuple of the form " "``(realname, email_address)`` and returns the string value suitable for a :" @@ -94,7 +96,7 @@ msgid "" "is false, then the second element is returned unmodified." msgstr "" -#: ../Doc/library/email.util.rst:78 +#: ../Doc/library/email.utils.rst:78 msgid "" "Optional *charset* is the character set that will be used in the :rfc:`2047` " "encoding of the ``realname`` if the ``realname`` contains non-ASCII " @@ -102,11 +104,11 @@ msgid "" "Charset`. Defaults to ``utf-8``." msgstr "" -#: ../Doc/library/email.util.rst:83 +#: ../Doc/library/email.utils.rst:83 msgid "Added the *charset* option." msgstr "" -#: ../Doc/library/email.util.rst:89 +#: ../Doc/library/email.utils.rst:89 msgid "" "This method returns a list of 2-tuples of the form returned by " "``parseaddr()``. *fieldvalues* is a sequence of header field values as might " @@ -114,7 +116,7 @@ msgid "" "Here's a simple example that gets all the recipients of a message::" msgstr "" -#: ../Doc/library/email.util.rst:105 +#: ../Doc/library/email.utils.rst:105 msgid "" "Attempts to parse a date according to the rules in :rfc:`2822`. however, " "some mailers don't follow that format as specified, so :func:`parsedate` " @@ -125,7 +127,7 @@ msgid "" "returned. Note that indexes 6, 7, and 8 of the result tuple are not usable." msgstr "" -#: ../Doc/library/email.util.rst:116 +#: ../Doc/library/email.utils.rst:116 msgid "" "Performs the same function as :func:`parsedate`, but returns either ``None`` " "or a 10-tuple; the first 9 elements make up a tuple that can be passed " @@ -136,7 +138,7 @@ msgid "" "not usable." msgstr "" -#: ../Doc/library/email.util.rst:126 +#: ../Doc/library/email.utils.rst:126 msgid "" "The inverse of :func:`format_datetime`. Performs the same function as :func:" "`parsedate`, but on success returns a :mod:`~datetime.datetime`. If the " @@ -148,25 +150,25 @@ msgid "" "corresponding a :class:`~datetime.timezone` :class:`~datetime.tzinfo`." msgstr "" -#: ../Doc/library/email.util.rst:140 +#: ../Doc/library/email.utils.rst:140 msgid "" "Turn a 10-tuple as returned by :func:`parsedate_tz` into a UTC timestamp " "(seconds since the Epoch). If the timezone item in the tuple is ``None``, " "assume local time." msgstr "" -#: ../Doc/library/email.util.rst:147 +#: ../Doc/library/email.utils.rst:147 msgid "Returns a date string as per :rfc:`2822`, e.g.::" msgstr "" -#: ../Doc/library/email.util.rst:151 +#: ../Doc/library/email.utils.rst:151 msgid "" "Optional *timeval* if given is a floating point time value as accepted by :" "func:`time.gmtime` and :func:`time.localtime`, otherwise the current time is " "used." msgstr "" -#: ../Doc/library/email.util.rst:155 +#: ../Doc/library/email.utils.rst:155 msgid "" "Optional *localtime* is a flag that when ``True``, interprets *timeval*, and " "returns a date relative to the local timezone instead of UTC, properly " @@ -174,7 +176,7 @@ msgid "" "UTC is used." msgstr "" -#: ../Doc/library/email.util.rst:160 +#: ../Doc/library/email.utils.rst:160 msgid "" "Optional *usegmt* is a flag that when ``True``, outputs a date string with " "the timezone as an ascii string ``GMT``, rather than a numeric ``-0000``. " @@ -182,7 +184,7 @@ msgid "" "*localtime* is ``False``. The default is ``False``." msgstr "" -#: ../Doc/library/email.util.rst:168 +#: ../Doc/library/email.utils.rst:168 msgid "" "Like ``formatdate``, but the input is a :mod:`datetime` instance. If it is " "a naive datetime, it is assumed to be \"UTC with no information about the " @@ -194,11 +196,11 @@ msgid "" "date headers." msgstr "" -#: ../Doc/library/email.util.rst:182 +#: ../Doc/library/email.utils.rst:182 msgid "Decode the string *s* according to :rfc:`2231`." msgstr "" -#: ../Doc/library/email.util.rst:187 +#: ../Doc/library/email.utils.rst:187 msgid "" "Encode the string *s* according to :rfc:`2231`. Optional *charset* and " "*language*, if given is the character set name and language name to use. If " @@ -207,7 +209,7 @@ msgid "" "*language*." msgstr "" -#: ../Doc/library/email.util.rst:195 +#: ../Doc/library/email.utils.rst:195 msgid "" "When a header parameter is encoded in :rfc:`2231` format, :meth:`Message." "get_param ` may return a 3-tuple containing " @@ -219,23 +221,23 @@ msgid "" "defaults to ``'us-ascii'``." msgstr "" -#: ../Doc/library/email.util.rst:204 +#: ../Doc/library/email.utils.rst:204 msgid "" "For convenience, if the *value* passed to :func:`collapse_rfc2231_value` is " "not a tuple, it should be a string and it is returned unquoted." msgstr "" -#: ../Doc/library/email.util.rst:210 +#: ../Doc/library/email.utils.rst:210 msgid "" "Decode parameters list according to :rfc:`2231`. *params* is a sequence of " "2-tuples containing elements of the form ``(content-type, string-value)``." msgstr "" -#: ../Doc/library/email.util.rst:215 +#: ../Doc/library/email.utils.rst:215 msgid "Footnotes" -msgstr "Notes" +msgstr "" -#: ../Doc/library/email.util.rst:216 +#: ../Doc/library/email.utils.rst:216 msgid "" "Note that the sign of the timezone offset is the opposite of the sign of the " "``time.timezone`` variable for the same timezone; the latter variable "