Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 32d15d9

Browse files
InebhisCheck your git settings!Seluj78christopheNan
authored
Traduction et correction library/_thread.po (#1078)
* Traduction et correction library/_thread.po * Update library/_thread.po Co-Authored-By: Jules Lasne (jlasne) <[email protected]> * Update library/_thread.po Co-Authored-By: Jules Lasne (jlasne) <[email protected]> * Update library/_thread.po Co-Authored-By: Christophe Nanteuil <[email protected]> * Update library/_thread.po Co-Authored-By: Christophe Nanteuil <[email protected]> * Update library/_thread.po Co-Authored-By: Christophe Nanteuil <[email protected]> * Update library/_thread.po Co-Authored-By: Jules Lasne (jlasne) <[email protected]> * Update library/_thread.po Co-Authored-By: Christophe Nanteuil <[email protected]> * Update library/_thread.po Co-Authored-By: Christophe Nanteuil <[email protected]> * Update library/_thread.po Co-Authored-By: Christophe Nanteuil <[email protected]> * Powrap fichier _thread.po Co-authored-by: Check your git settings! <chris@chris-laptop> Co-authored-by: Jules Lasne (jlasne) <[email protected]> Co-authored-by: Christophe Nanteuil <[email protected]>
1 parent 0e3284c commit 32d15d9

File tree

1 file changed

+22
-17
lines changed

1 file changed

+22
-17
lines changed

library/_thread.po

Lines changed: 22 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ msgstr ""
66
"Project-Id-Version: Python 3\n"
77
"Report-Msgid-Bugs-To: \n"
88
"POT-Creation-Date: 2019-09-04 11:33+0200\n"
9-
"PO-Revision-Date: 2019-06-11 18:37+0100\n"
10-
"Last-Translator: Stéphane HUC <[email protected]>\n"
9+
"PO-Revision-Date: 2019-12-13 12:43+0100\n"
10+
"Last-Translator: Inebhis <[email protected]>\n"
1111
"Language-Team: FRENCH <[email protected]>\n"
1212
"Language: fr\n"
1313
"MIME-Version: 1.0\n"
1414
"Content-Type: text/plain; charset=UTF-8\n"
1515
"Content-Transfer-Encoding: 8bit\n"
16-
"X-Generator: Poedit 2.0.4\n"
16+
"X-Generator: Poedit 2.2.4\n"
1717

1818
#: ../Doc/library/_thread.rst:2
1919
msgid ":mod:`_thread` --- Low-level threading API"
@@ -58,7 +58,6 @@ msgid "This is the type of lock objects."
5858
msgstr "C'est le type d'objets verrous."
5959

6060
#: ../Doc/library/_thread.rst:46
61-
#, fuzzy
6261
msgid ""
6362
"Start a new thread and return its identifier. The thread executes the "
6463
"function *function* with the argument list *args* (which must be a tuple). "
@@ -67,15 +66,11 @@ msgstr ""
6766
"Démarre un nouveau fils d'exécution et renvoie son identifiant. Ce fil "
6867
"d'exécution exécute la fonction *function* avec la liste d'arguments *args* "
6968
"(qui doit être un *tuple*). L'argument optionnel *kwargs* spécifie un "
70-
"dictionnaire d'arguments de mots clés. Quand la fonction se termine, le fil "
71-
"d'exécution se termine silencieusement. Quand la fonction termine avec une "
72-
"exception non gérée, une trace de la pile est affichée et ensuite le fil "
73-
"d'exécution s'arrête (mais les autres fils d'exécutions continuent de "
74-
"s'exécuter)."
69+
"dictionnaire d'arguments de mots clés."
7570

7671
#: ../Doc/library/_thread.rst:50
7772
msgid "When the function returns, the thread silently exits."
78-
msgstr ""
73+
msgstr "Au renvoi de la fonction, le fil d'exécution quitte silencieusement."
7974

8075
#: ../Doc/library/_thread.rst:52
8176
msgid ""
@@ -84,19 +79,25 @@ msgid ""
8479
"the hook argument is *function*. By default, a stack trace is printed and "
8580
"then the thread exits (but other threads continue to run)."
8681
msgstr ""
82+
"Lorsque la fonction se termine avec une exception non gérée, :func:`sys."
83+
"unraisablehook` est appelée pour gérer cette dernière. L'attribut *object* "
84+
"de l'argument *hook* est *function*. Par défaut, la trace d'appels est "
85+
"affichée puis le fil d'exécution se termine (mais les autres fils "
86+
"d'exécution continuent de s'exécuter)."
8787

8888
#: ../Doc/library/_thread.rst:57
89-
#, fuzzy
9089
msgid ""
9190
"When the function raises a :exc:`SystemExit` exception, it is silently "
9291
"ignored."
9392
msgstr ""
94-
"Appeler la fonction :func:`sys.exit` ou lever l'exception :exc:`SystemExit` "
95-
"est équivalent à appeler la fonction :func:`_thread.exit`."
93+
"Lorsque la fonction lève l'exception :exc:`SystemExit`, elle est ignorée "
94+
"silencieusement."
9695

9796
#: ../Doc/library/_thread.rst:60
9897
msgid ":func:`sys.unraisablehook` is now used to handle unhandled exceptions."
9998
msgstr ""
99+
":func:`sys.unraisablehook` est maintenant utilisée pour s'occuper des "
100+
"exceptions non gérées."
100101

101102
#: ../Doc/library/_thread.rst:66
102103
msgid ""
@@ -154,15 +155,19 @@ msgid ""
154155
"identify this particular thread system-wide (until the thread terminates, "
155156
"after which the value may be recycled by the OS)."
156157
msgstr ""
158+
"Renvoie l'identifiant natif complet assigné par le noyau du fil d'exécution "
159+
"actuel. C'est un entier non négatif. Sa valeur peut uniquement être utilisée "
160+
"pour identifier ce fil d'exécution à l'échelle du système (jusqu'à ce que le "
161+
"fil d'exécution se termine, après quoi la valeur peut être recyclée par le "
162+
"système d'exploitation)."
157163

158164
#: ../Doc/library/_thread.rst:110
159-
#, fuzzy
160165
msgid ""
161166
":ref:`Availability <availability>`: Windows, FreeBSD, Linux, macOS, OpenBSD, "
162167
"NetBSD, AIX."
163168
msgstr ""
164-
":ref:`Disponibilité <availability>` : Windows et systèmes gérant les fils "
165-
"d'exécution POSIX."
169+
":ref:`Disponibilité <availability>` : Windows, FreeBSD, Linux, macOS, "
170+
"OpenBSD, NetBSD, AIX."
166171

167172
#: ../Doc/library/_thread.rst:116
168173
msgid ""
@@ -220,7 +225,7 @@ msgstr ""
220225

221226
#: ../Doc/library/_thread.rst:143
222227
msgid "Lock objects have the following methods:"
223-
msgstr "Les verrous ont les méthodes suivantes : "
228+
msgstr "Les verrous ont les méthodes suivantes :"
224229

225230
#: ../Doc/library/_thread.rst:148
226231
msgid ""

0 commit comments

Comments
 (0)