From 6fe1ec353b3c74d3e687f24067ba8f022cc24310 Mon Sep 17 00:00:00 2001 From: Loc Cosnier Date: Mon, 22 Mar 2021 09:42:04 +0100 Subject: [PATCH] Traduction de library/collections.abc.po (#1565) --- library/collections.abc.po | 29 ++++++++++++----------------- 1 file changed, 12 insertions(+), 17 deletions(-) diff --git a/library/collections.abc.po b/library/collections.abc.po index 9607c8a6..96fe40f2 100644 --- a/library/collections.abc.po +++ b/library/collections.abc.po @@ -6,14 +6,15 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-12-17 16:05+0100\n" -"PO-Revision-Date: 2018-09-27 15:04+0200\n" -"Last-Translator: Julien Palard \n" -"Language-Team: FRENCH \n" +"PO-Revision-Date: 2021-03-21 16:06+0100\n" +"Last-Translator: Loc Cosnier \n" +"Language-Team: French \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.9\n" +"X-Generator: Gtranslator 3.38.0\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" #: library/collections.abc.rst:2 msgid ":mod:`collections.abc` --- Abstract Base Classes for Containers" @@ -326,24 +327,20 @@ msgid "``aclose``, ``__aiter__``, ``__anext__``" msgstr "``aclose``, ``__aiter__``, ``__anext__``" #: library/collections.abc.rst:102 -#, fuzzy msgid "ABC for classes that provide the :meth:`__contains__` method." -msgstr "ABC pour les classes qui définissent la méthode :meth:`__iter__`." +msgstr "ABC pour les classes qui définissent la méthode :meth:`__contains__`." #: library/collections.abc.rst:106 -#, fuzzy msgid "ABC for classes that provide the :meth:`__hash__` method." -msgstr "ABC pour les classes qui définissent la méthode :meth:`__iter__`." +msgstr "ABC pour les classes qui définissent la méthode :meth:`__hash__`." #: library/collections.abc.rst:110 -#, fuzzy msgid "ABC for classes that provide the :meth:`__len__` method." -msgstr "ABC pour les classes qui définissent la méthode :meth:`__iter__`." +msgstr "ABC pour les classes qui définissent la méthode :meth:`__len__`." #: library/collections.abc.rst:114 -#, fuzzy msgid "ABC for classes that provide the :meth:`__call__` method." -msgstr "ABC pour les classes qui définissent la méthode :meth:`__iter__`." +msgstr "ABC pour les classes qui définissent la méthode :meth:`__call__`." #: library/collections.abc.rst:118 msgid "ABC for classes that provide the :meth:`__iter__` method." @@ -450,7 +447,6 @@ msgstr "" "personnalisées doivent définir la méthode :meth:`__await__`." #: library/collections.abc.rst:196 -#, fuzzy msgid "" ":term:`Coroutine ` objects and instances of the :class:" "`~collections.abc.Coroutine` ABC are all instances of this ABC." @@ -561,7 +557,6 @@ msgstr "" "*mixin* :" #: library/collections.abc.rst:287 -#, fuzzy msgid "" "Since some set operations create new sets, the default mixin methods need a " "way to create new instances from an iterable. The class constructor is " @@ -580,9 +575,9 @@ msgstr "" "supposition est faite par une méthode de classe interne appelée :meth:" "`_from_iterable` qui appelle ``cls(iterable)`` pour construire un nouvel " "ensemble. Si le :class:`Set` *mixin* est utilisé dans une classe avec un " -"constructeur de signature différente, vous devrez surcharger :meth:" -"`_from_iterable` avec une méthode de classe qui peut construire de nouvelles " -"instances à partir d'un argument itérable." +"constructeur de signature différente, vous devez surcharger :meth:" +"`_from_iterable` avec une méthode de classe ou une méthode ordinaire qui " +"peut construire de nouvelles instances à partir d'un argument itérable." #: library/collections.abc.rst:298 msgid ""