Fixed fuzzys in library/unittest.po (#690)

* Fixed fuzzys * Fixed fuzzys
This commit is contained in:
Jules Lasne (jlasne) 2019-04-18 13:16:48 +02:00 committed by GitHub
commit 1d8cedcaec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,14 +6,14 @@ msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-04-10 09:35+0200\n"
"PO-Revision-Date: 2019-02-19 22:22+0100\n"
"PO-Revision-Date: 2019-04-11 21:33+0200\n"
"Last-Translator: Jules Lasne <jules.lasne@gmail.com>\n"
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.0.2\n"
"X-Generator: Poedit 2.2.1\n"
#: ../Doc/reference/datamodel.rst:6
msgid "Data model"
@ -807,7 +807,6 @@ msgid ":attr:`__doc__`"
msgstr ":attr:`__doc__`"
#: ../Doc/reference/datamodel.rst:475
#, fuzzy
msgid ""
"The function's documentation string, or ``None`` if unavailable; not "
"inherited by subclasses."
@ -828,7 +827,6 @@ msgid ":attr:`~definition.\\ __name__`"
msgstr ":attr:`~definition.\\ __name__`"
#: ../Doc/reference/datamodel.rst:480
#, fuzzy
msgid "The function's name."
msgstr "Nom de la fonction"
@ -837,7 +835,6 @@ msgid ":attr:`~definition.\\ __qualname__`"
msgstr ":attr:`~definition.\\ __qualname__`"
#: ../Doc/reference/datamodel.rst:483
#, fuzzy
msgid "The function's :term:`qualified name`."
msgstr ":term:`qualified name` de la fonction"
@ -858,7 +855,6 @@ msgid ":attr:`__defaults__`"
msgstr ":attr:`__defaults__`"
#: ../Doc/reference/datamodel.rst:492
#, fuzzy
msgid ""
"A tuple containing default argument values for those arguments that have "
"defaults, or ``None`` if no arguments have a default value."
@ -3242,27 +3238,22 @@ msgstr ""
"suivies sont :"
#: ../Doc/reference/datamodel.rst:1864
#, fuzzy
msgid "MRO entries are resolved;"
msgstr "Les entrées MRO sont résolues"
#: ../Doc/reference/datamodel.rst:1865
#, fuzzy
msgid "the appropriate metaclass is determined;"
msgstr "la méta-classe appropriée est déterminée ;"
#: ../Doc/reference/datamodel.rst:1866
#, fuzzy
msgid "the class namespace is prepared;"
msgstr "l'espace de nommage de la classe est préparé ;"
#: ../Doc/reference/datamodel.rst:1867
#, fuzzy
msgid "the class body is executed;"
msgstr "le corps de la classe est exécuté ;"
#: ../Doc/reference/datamodel.rst:1868
#, fuzzy
msgid "the class object is created."
msgstr "l'objet classe est crée."
@ -3302,7 +3293,6 @@ msgstr ""
"manière suivante :"
#: ../Doc/reference/datamodel.rst:1892
#, fuzzy
msgid ""
"if no bases and no explicit metaclass are given, then :func:`type` is used;"
msgstr ""
@ -3310,7 +3300,6 @@ msgstr ""
"utilisée ;"
#: ../Doc/reference/datamodel.rst:1893
#, fuzzy
msgid ""
"if an explicit metaclass is given and it is *not* an instance of :func:"
"`type`, then it is used directly as the metaclass;"
@ -3320,7 +3309,6 @@ msgstr ""
"classe ;"
#: ../Doc/reference/datamodel.rst:1895
#, fuzzy
msgid ""
"if an instance of :func:`type` is given as the explicit metaclass, or bases "
"are defined, then the most derived metaclass is used."
@ -3484,7 +3472,6 @@ msgstr ""
"__set_name__` ;"
#: ../Doc/reference/datamodel.rst:1983
#, fuzzy
msgid ""
"second, all of these ``__set_name__`` methods are called with the class "
"being defined and the assigned name of that particular descriptor;"
@ -3632,7 +3619,6 @@ msgid "Emulating generic types"
msgstr "Émulation de types génériques"
#: ../Doc/reference/datamodel.rst:2055
#, fuzzy
msgid ""
"One can implement the generic class syntax as specified by :pep:`484` (for "
"example ``List[int]``) by defining a special method:"