From 8ef11d8c15686b3e611ff0f7bf03b6f8e3f1b460 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 13 Dec 2019 12:47:01 +0100 Subject: [PATCH 01/11] Traduction et correction library/_thread.po --- library/_thread.po | 39 ++++++++++++++++++++++----------------- 1 file changed, 22 insertions(+), 17 deletions(-) diff --git a/library/_thread.po b/library/_thread.po index bb5a691cf..1e2191db7 100644 --- a/library/_thread.po +++ b/library/_thread.po @@ -6,14 +6,14 @@ msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-04 11:33+0200\n" -"PO-Revision-Date: 2019-06-11 18:37+0100\n" -"Last-Translator: Stéphane HUC \n" +"PO-Revision-Date: 2019-12-13 12:43+0100\n" +"Last-Translator: Inebhis \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.4\n" +"X-Generator: Poedit 2.2.4\n" #: ../Doc/library/_thread.rst:2 msgid ":mod:`_thread` --- Low-level threading API" @@ -58,7 +58,6 @@ msgid "This is the type of lock objects." msgstr "C'est le type d'objets verrous." #: ../Doc/library/_thread.rst:46 -#, fuzzy msgid "" "Start a new thread and return its identifier. The thread executes the " "function *function* with the argument list *args* (which must be a tuple). " @@ -67,15 +66,11 @@ msgstr "" "Démarre un nouveau fils d'exécution et renvoie son identifiant. Ce fil " "d'exécution exécute la fonction *function* avec la liste d'arguments *args* " "(qui doit être un *tuple*). L'argument optionnel *kwargs* spécifie un " -"dictionnaire d'arguments de mots clés. Quand la fonction se termine, le fil " -"d'exécution se termine silencieusement. Quand la fonction termine avec une " -"exception non gérée, une trace de la pile est affichée et ensuite le fil " -"d'exécution s'arrête (mais les autres fils d'exécutions continuent de " -"s'exécuter)." +"dictionnaire d'arguments de mots clés." #: ../Doc/library/_thread.rst:50 msgid "When the function returns, the thread silently exits." -msgstr "" +msgstr "Au renvoi de la fonction, le fil d'exécution existe silencieusement." #: ../Doc/library/_thread.rst:52 msgid "" @@ -84,19 +79,25 @@ msgid "" "the hook argument is *function*. By default, a stack trace is printed and " "then the thread exits (but other threads continue to run)." msgstr "" +"Lorsque la fonction se termine avec une exception non gérée, :func:`sys." +"unraisablehook` est appelé pour gérer cette dernière. L'attribut *object* de " +"l'argument *hook* est *function*. Par défaut, la trace d'appels est affichée " +"puis le fil d'exécution existe (mais les autres fils d'exécution continuent " +"de s'exécuter)." #: ../Doc/library/_thread.rst:57 -#, fuzzy msgid "" "When the function raises a :exc:`SystemExit` exception, it is silently " "ignored." msgstr "" -"Appeler la fonction :func:`sys.exit` ou lever l'exception :exc:`SystemExit` " -"est équivalent à appeler la fonction :func:`_thread.exit`." +"Lorsque la fonction lève l'exception :exc:`SystemExit`, elle est " +"silencieusement ignorée." #: ../Doc/library/_thread.rst:60 msgid ":func:`sys.unraisablehook` is now used to handle unhandled exceptions." msgstr "" +":func:`sys.unraisablehook` est maintenant utilisé pour s'occuper des " +"exceptions non gérées." #: ../Doc/library/_thread.rst:66 msgid "" @@ -154,15 +155,19 @@ msgid "" "identify this particular thread system-wide (until the thread terminates, " "after which the value may be recycled by the OS)." msgstr "" +"Renvoie l'intégral natif *Thread ID* de l'actuel fil d'exécution assigné par " +"le noyau. Cela est un entier non négatif. Sa valeur peut uniquement être " +"utilisée pour identifier ce fil d'exécution à l'échelle du système (jusqu'à " +"ce que le fil d'exécution se termine, après quoi la valeur peut être " +"recyclée par l'OS)." #: ../Doc/library/_thread.rst:110 -#, fuzzy msgid "" ":ref:`Availability `: Windows, FreeBSD, Linux, macOS, OpenBSD, " "NetBSD, AIX." msgstr "" -":ref:`Disponibilité ` : Windows et systèmes gérant les fils " -"d'exécution POSIX." +":ref:`Disponibilité ` : Windows, FreeBSD, Linux, macOS, " +"OpenBSD, NetBSD, AIX." #: ../Doc/library/_thread.rst:116 msgid "" @@ -220,7 +225,7 @@ msgstr "" #: ../Doc/library/_thread.rst:143 msgid "Lock objects have the following methods:" -msgstr "Les verrous ont les méthodes suivantes : " +msgstr "Les verrous ont les méthodes suivantes :" #: ../Doc/library/_thread.rst:148 msgid "" From 14f4e43d3856a01b6a0777cbd1929840b4eb5e38 Mon Sep 17 00:00:00 2001 From: Inebhis Date: Tue, 17 Dec 2019 17:11:08 +0100 Subject: [PATCH 02/11] Update library/_thread.po Co-Authored-By: Jules Lasne (jlasne) --- library/_thread.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/_thread.po b/library/_thread.po index 1e2191db7..adf919ba8 100644 --- a/library/_thread.po +++ b/library/_thread.po @@ -70,7 +70,7 @@ msgstr "" #: ../Doc/library/_thread.rst:50 msgid "When the function returns, the thread silently exits." -msgstr "Au renvoi de la fonction, le fil d'exécution existe silencieusement." +msgstr "Au renvoi de la fonction, le fil d'exécution quitte silencieusement." #: ../Doc/library/_thread.rst:52 msgid "" From 9660ec52da5154f5a47fa7f3e08e0d9d9e9a0947 Mon Sep 17 00:00:00 2001 From: Inebhis Date: Tue, 17 Dec 2019 17:11:28 +0100 Subject: [PATCH 03/11] Update library/_thread.po Co-Authored-By: Jules Lasne (jlasne) --- library/_thread.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/_thread.po b/library/_thread.po index adf919ba8..82dcb1ce2 100644 --- a/library/_thread.po +++ b/library/_thread.po @@ -225,7 +225,7 @@ msgstr "" #: ../Doc/library/_thread.rst:143 msgid "Lock objects have the following methods:" -msgstr "Les verrous ont les méthodes suivantes :" +msgstr "Les verrous ont les méthodes suivantes :" #: ../Doc/library/_thread.rst:148 msgid "" From e285223807a1742d4be0f41a4a590f8bd1e33b69 Mon Sep 17 00:00:00 2001 From: Inebhis Date: Tue, 17 Dec 2019 17:11:58 +0100 Subject: [PATCH 04/11] Update library/_thread.po Co-Authored-By: Christophe Nanteuil <35002064+christopheNan@users.noreply.github.com> --- library/_thread.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/_thread.po b/library/_thread.po index 82dcb1ce2..9f6263aff 100644 --- a/library/_thread.po +++ b/library/_thread.po @@ -82,7 +82,7 @@ msgstr "" "Lorsque la fonction se termine avec une exception non gérée, :func:`sys." "unraisablehook` est appelé pour gérer cette dernière. L'attribut *object* de " "l'argument *hook* est *function*. Par défaut, la trace d'appels est affichée " -"puis le fil d'exécution existe (mais les autres fils d'exécution continuent " +"puis le fil d'exécution se termine (mais les autres fils d'exécution continuent " "de s'exécuter)." #: ../Doc/library/_thread.rst:57 From a23fd24aacad83b588e5843b8e5ddbe176f8e3f2 Mon Sep 17 00:00:00 2001 From: Inebhis Date: Tue, 17 Dec 2019 17:12:09 +0100 Subject: [PATCH 05/11] Update library/_thread.po Co-Authored-By: Christophe Nanteuil <35002064+christopheNan@users.noreply.github.com> --- library/_thread.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/_thread.po b/library/_thread.po index 9f6263aff..015f1ac2b 100644 --- a/library/_thread.po +++ b/library/_thread.po @@ -96,7 +96,7 @@ msgstr "" #: ../Doc/library/_thread.rst:60 msgid ":func:`sys.unraisablehook` is now used to handle unhandled exceptions." msgstr "" -":func:`sys.unraisablehook` est maintenant utilisé pour s'occuper des " +":func:`sys.unraisablehook` est maintenant utilisée pour s'occuper des " "exceptions non gérées." #: ../Doc/library/_thread.rst:66 From 6fbea21e86671f8c561feb3a0ee8e146aa47bb55 Mon Sep 17 00:00:00 2001 From: Inebhis Date: Tue, 17 Dec 2019 17:13:26 +0100 Subject: [PATCH 06/11] Update library/_thread.po Co-Authored-By: Christophe Nanteuil <35002064+christopheNan@users.noreply.github.com> --- library/_thread.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/_thread.po b/library/_thread.po index 015f1ac2b..750c42099 100644 --- a/library/_thread.po +++ b/library/_thread.po @@ -155,7 +155,7 @@ msgid "" "identify this particular thread system-wide (until the thread terminates, " "after which the value may be recycled by the OS)." msgstr "" -"Renvoie l'intégral natif *Thread ID* de l'actuel fil d'exécution assigné par " +"Renvoie l'identifiant natif complet assigné par le noyau du fil d'exécution actuel. " "le noyau. Cela est un entier non négatif. Sa valeur peut uniquement être " "utilisée pour identifier ce fil d'exécution à l'échelle du système (jusqu'à " "ce que le fil d'exécution se termine, après quoi la valeur peut être " From 4b795994963807ec8994cc0afec8c3a5a85b0399 Mon Sep 17 00:00:00 2001 From: Inebhis Date: Tue, 17 Dec 2019 17:14:15 +0100 Subject: [PATCH 07/11] Update library/_thread.po Co-Authored-By: Jules Lasne (jlasne) --- library/_thread.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/_thread.po b/library/_thread.po index 750c42099..8a01b4afa 100644 --- a/library/_thread.po +++ b/library/_thread.po @@ -91,7 +91,7 @@ msgid "" "ignored." msgstr "" "Lorsque la fonction lève l'exception :exc:`SystemExit`, elle est " -"silencieusement ignorée." +"ignorée silencieusement." #: ../Doc/library/_thread.rst:60 msgid ":func:`sys.unraisablehook` is now used to handle unhandled exceptions." From a415af7b489fa8583132b709fabd9094622cc838 Mon Sep 17 00:00:00 2001 From: Inebhis Date: Tue, 17 Dec 2019 17:14:28 +0100 Subject: [PATCH 08/11] Update library/_thread.po Co-Authored-By: Christophe Nanteuil <35002064+christopheNan@users.noreply.github.com> --- library/_thread.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/_thread.po b/library/_thread.po index 8a01b4afa..4f4bfb0a0 100644 --- a/library/_thread.po +++ b/library/_thread.po @@ -159,7 +159,7 @@ msgstr "" "le noyau. Cela est un entier non négatif. Sa valeur peut uniquement être " "utilisée pour identifier ce fil d'exécution à l'échelle du système (jusqu'à " "ce que le fil d'exécution se termine, après quoi la valeur peut être " -"recyclée par l'OS)." +"recyclée par le système d'exploitation)." #: ../Doc/library/_thread.rst:110 msgid "" From 8d4999ef73b97eefbcd745efc5f04030aff3f464 Mon Sep 17 00:00:00 2001 From: Inebhis Date: Tue, 17 Dec 2019 17:14:44 +0100 Subject: [PATCH 09/11] Update library/_thread.po Co-Authored-By: Christophe Nanteuil <35002064+christopheNan@users.noreply.github.com> --- library/_thread.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/_thread.po b/library/_thread.po index 4f4bfb0a0..f2ba539d2 100644 --- a/library/_thread.po +++ b/library/_thread.po @@ -80,7 +80,7 @@ msgid "" "then the thread exits (but other threads continue to run)." msgstr "" "Lorsque la fonction se termine avec une exception non gérée, :func:`sys." -"unraisablehook` est appelé pour gérer cette dernière. L'attribut *object* de " +"unraisablehook` est appelée pour gérer cette dernière. L'attribut *object* de " "l'argument *hook* est *function*. Par défaut, la trace d'appels est affichée " "puis le fil d'exécution se termine (mais les autres fils d'exécution continuent " "de s'exécuter)." From db0c862847bba5f4625d1fa79efe0d220ef34ded Mon Sep 17 00:00:00 2001 From: Inebhis Date: Tue, 17 Dec 2019 22:57:18 +0100 Subject: [PATCH 10/11] Update library/_thread.po Co-Authored-By: Christophe Nanteuil <35002064+christopheNan@users.noreply.github.com> --- library/_thread.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/_thread.po b/library/_thread.po index f2ba539d2..3284339c7 100644 --- a/library/_thread.po +++ b/library/_thread.po @@ -156,7 +156,7 @@ msgid "" "after which the value may be recycled by the OS)." msgstr "" "Renvoie l'identifiant natif complet assigné par le noyau du fil d'exécution actuel. " -"le noyau. Cela est un entier non négatif. Sa valeur peut uniquement être " +"C'est un entier non négatif. Sa valeur peut uniquement être " "utilisée pour identifier ce fil d'exécution à l'échelle du système (jusqu'à " "ce que le fil d'exécution se termine, après quoi la valeur peut être " "recyclée par le système d'exploitation)." From 3e9c5edc3408d1ce52d6c8177913000dc60241fe Mon Sep 17 00:00:00 2001 From: root Date: Tue, 14 Jan 2020 08:56:27 +0100 Subject: [PATCH 11/11] Powrap fichier _thread.po --- library/_thread.po | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/library/_thread.po b/library/_thread.po index 3284339c7..05b945da8 100644 --- a/library/_thread.po +++ b/library/_thread.po @@ -80,18 +80,18 @@ msgid "" "then the thread exits (but other threads continue to run)." msgstr "" "Lorsque la fonction se termine avec une exception non gérée, :func:`sys." -"unraisablehook` est appelée pour gérer cette dernière. L'attribut *object* de " -"l'argument *hook* est *function*. Par défaut, la trace d'appels est affichée " -"puis le fil d'exécution se termine (mais les autres fils d'exécution continuent " -"de s'exécuter)." +"unraisablehook` est appelée pour gérer cette dernière. L'attribut *object* " +"de l'argument *hook* est *function*. Par défaut, la trace d'appels est " +"affichée puis le fil d'exécution se termine (mais les autres fils " +"d'exécution continuent de s'exécuter)." #: ../Doc/library/_thread.rst:57 msgid "" "When the function raises a :exc:`SystemExit` exception, it is silently " "ignored." msgstr "" -"Lorsque la fonction lève l'exception :exc:`SystemExit`, elle est " -"ignorée silencieusement." +"Lorsque la fonction lève l'exception :exc:`SystemExit`, elle est ignorée " +"silencieusement." #: ../Doc/library/_thread.rst:60 msgid ":func:`sys.unraisablehook` is now used to handle unhandled exceptions." @@ -155,11 +155,11 @@ msgid "" "identify this particular thread system-wide (until the thread terminates, " "after which the value may be recycled by the OS)." msgstr "" -"Renvoie l'identifiant natif complet assigné par le noyau du fil d'exécution actuel. " -"C'est un entier non négatif. Sa valeur peut uniquement être " -"utilisée pour identifier ce fil d'exécution à l'échelle du système (jusqu'à " -"ce que le fil d'exécution se termine, après quoi la valeur peut être " -"recyclée par le système d'exploitation)." +"Renvoie l'identifiant natif complet assigné par le noyau du fil d'exécution " +"actuel. C'est un entier non négatif. Sa valeur peut uniquement être utilisée " +"pour identifier ce fil d'exécution à l'échelle du système (jusqu'à ce que le " +"fil d'exécution se termine, après quoi la valeur peut être recyclée par le " +"système d'exploitation)." #: ../Doc/library/_thread.rst:110 msgid ""