From a8ce7bb53e63adac40e4f47e293323dffa64f0d0 Mon Sep 17 00:00:00 2001 From: "Jules Lasne (jlasne)" Date: Mon, 18 Nov 2019 17:19:39 +0100 Subject: [PATCH] Fixed fuzzies in reference/import.po (#996) --- reference/import.po | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/reference/import.po b/reference/import.po index 4bedc2e0..b9b3723c 100644 --- a/reference/import.po +++ b/reference/import.po @@ -6,14 +6,14 @@ msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-11-15 18:54+0100\n" -"PO-Revision-Date: 2019-06-01 23:45+0200\n" +"PO-Revision-Date: 2019-11-17 22:48+0100\n" "Last-Translator: Jules Lasne \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.2.1\n" +"X-Generator: Poedit 2.2.4\n" #: ../Doc/reference/import.rst:6 msgid "The import system" @@ -1298,7 +1298,6 @@ msgid "Cached bytecode invalidation" msgstr "Invalidation de *bytecode* mis en cache" #: ../Doc/reference/import.rst:681 -#, fuzzy msgid "" "Before Python loads cached bytecode from ``.pyc`` file, it checks whether " "the cache is up-to-date with the source ``.py`` file. By default, Python " @@ -1678,7 +1677,6 @@ msgstr "" "`~importlib.abc.PathEntryFinder.find_spec`." #: ../Doc/reference/import.rst:852 -#, fuzzy msgid "" ":meth:`~importlib.abc.PathEntryFinder.find_spec` takes two arguments: the " "fully qualified name of the module being imported, and the (optional) target " @@ -1686,7 +1684,7 @@ msgid "" "spec will always have \"loader\" set (with one exception)." msgstr "" "La méthode :meth:`~importlib.abc.PathEntryFinder.find_spec` prend deux " -"arguments, le nom complètement qualifié du module en cours d'importation et " +"arguments : le nom complètement qualifié du module en cours d'importation et " "(optionnellement) le module cible. ``find_spec()`` renvoie un spécificateur " "de module pleinement peuplé. Ce spécificateur doit avoir son chargeur " "(attribut \"loader\" ) défini, à une exception près." @@ -1825,7 +1823,6 @@ msgstr "" "comportement des importations qu'à l'intérieur de ce module." #: ../Doc/reference/import.rst:916 -#, fuzzy msgid "" "To selectively prevent the import of some modules from a hook early on the " "meta path (rather than disabling the standard import system entirely), it is " @@ -1838,7 +1835,7 @@ msgstr "" "d'entrée placé en tête dans le méta-chemin (plutôt que de désactiver " "complètement le système d'importation), il suffit de lever une :exc:" "`ModuleNotFoundError` directement depuis :meth:`~importlib.abc." -"MetaPathFinder.find_spec` au lieu de renvoyer ``None``. En effet, ``None`` " +"MetaPathFinder.find_spec` au lieu de renvoyer ``None``. En effet, ce dernier " "indique que la recherche dans le méta-chemin peut continuer alors que la " "levée de l'exception termine immédiatement la recherche."