Translate atexit.po (#344)

This commit is contained in:
ksamuel 2018-10-04 16:41:23 +02:00 committed by Julien Palard
parent a1285b3997
commit 333558ba9a

View File

@ -6,14 +6,14 @@ msgstr ""
"Project-Id-Version: Python 3.6\n" "Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-28 15:29+0200\n" "POT-Creation-Date: 2018-06-28 15:29+0200\n"
"PO-Revision-Date: 2017-08-10 01:05+0200\n" "PO-Revision-Date: 2018-10-04 15:33+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n" "Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: FRENCH <traductions@lists.afpy.org>\n" "Language-Team: FRENCH <traductions@lists.afpy.org>\n"
"Language: fr\n" "Language: fr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.8.11\n" "X-Generator: Poedit 2.0.6\n"
#: ../Doc/library/atexit.rst:2 #: ../Doc/library/atexit.rst:2
msgid ":mod:`atexit` --- Exit handlers" msgid ":mod:`atexit` --- Exit handlers"
@ -28,6 +28,13 @@ msgid ""
"``B``, and ``C``, at interpreter termination time they will be run in the " "``B``, and ``C``, at interpreter termination time they will be run in the "
"order ``C``, ``B``, ``A``." "order ``C``, ``B``, ``A``."
msgstr "" msgstr ""
"Le module :mod:`atexit` définit des fonctions pour inscrire et désinscrire "
"des fonctions de nettoyage. Les fonctions ainsi inscrites sont "
"automatiquement exécutées au moment de l'arrêt normal de l'interpréteur. :"
"mod:`atexit` exécute ces fonctions dans l'ordre inverse dans lequel elles "
"ont été inscrites; si vous inscrivez ``A``, ``B``, et ``C``, au moment de "
"l'arrêt de l'interpréteur elles seront exécutées dans l'ordre ``C``, ``B``, "
"``A``."
#: ../Doc/library/atexit.rst:19 #: ../Doc/library/atexit.rst:19
msgid "" msgid ""
@ -35,12 +42,18 @@ msgid ""
"program is killed by a signal not handled by Python, when a Python fatal " "program is killed by a signal not handled by Python, when a Python fatal "
"internal error is detected, or when :func:`os._exit` is called." "internal error is detected, or when :func:`os._exit` is called."
msgstr "" msgstr ""
"**Note:** Les fonctions inscrites via ce module ne sont pas appelées quand "
"le programme est tué par un signal non géré par Python, quand une erreur "
"fatale interne de Python est détectée, ou quand :func:`os._exit` est appelé."
#: ../Doc/library/atexit.rst:23 #: ../Doc/library/atexit.rst:23
msgid "" msgid ""
"When used with C-API subinterpreters, registered functions are local to the " "When used with C-API subinterpreters, registered functions are local to the "
"interpreter they were registered in." "interpreter they were registered in."
msgstr "" msgstr ""
"Quand elles sont utilisées avec des sous-interpréteurs de l'API C, les "
"fonctions inscrites sont locales à l'interpréteur dans lequel elles sont été "
"inscrites."
#: ../Doc/library/atexit.rst:29 #: ../Doc/library/atexit.rst:29
msgid "" msgid ""
@ -49,15 +62,25 @@ msgid ""
"func:`register`. It is possible to register the same function and arguments " "func:`register`. It is possible to register the same function and arguments "
"more than once." "more than once."
msgstr "" msgstr ""
"Inscrit *func* comme une fonction à exécuter au moment de l'arrêt de l'interpréteur. Tout "
"argument optionnel qui doit être passé à *func* doit être passé comme "
"arguments à :func:`register`. Il est possible d'inscrire les mêmes fonctions "
"et arguments plus d'une fois."
#: ../Doc/library/atexit.rst:34 #: ../Doc/library/atexit.rst:34
msgid "" msgid ""
"At normal program termination (for instance, if :func:`sys.exit` is called " "At normal program termination (for instance, if :func:`sys.exit` is called "
"or the main module's execution completes), all functions registered are " "or the main module's execution completes), all functions registered are "
"called in last in, first out order. The assumption is that lower level " "called in last in, first out order. The assumption is that lower level "
"modules will normally be imported before higher level modules and thus must " "modules will normally be imported before higher level modules and thus must "
"be cleaned up later." "be cleaned up later."
msgstr "" msgstr ""
"Lors d'un arrêt normal du programme (par exemple, si :func:`sys.exit` est "
"appelé ou lexécution du module principal se termine), toutes les fonctions "
"inscrites sont appelées, dans l'ordre de la dernière arrivée, première "
"servie. La supposition est que les modules les plus bas niveau vont "
"normalement être importés avant les modules haut niveau et ainsi être "
"nettoyés en dernier."
#: ../Doc/library/atexit.rst:40 #: ../Doc/library/atexit.rst:40
msgid "" msgid ""
@ -66,12 +89,19 @@ msgid ""
"information is saved. After all exit handlers have had a chance to run the " "information is saved. After all exit handlers have had a chance to run the "
"last exception to be raised is re-raised." "last exception to be raised is re-raised."
msgstr "" msgstr ""
"Si une exception est levée durant l'exécution du gestionnaire de fin de "
"programme, une trace d'appels est affichée (à moins que :exc:`SystemExit` "
"ait été levée) et les informations de l'exception sont sauvegardées. Une fois "
"que tous les gestionnaires de fin de programme ont eu une chance de "
"s'exécuter, la dernière exception à avoir été levée l'est de nouveau."
#: ../Doc/library/atexit.rst:45 #: ../Doc/library/atexit.rst:45
msgid "" msgid ""
"This function returns *func*, which makes it possible to use it as a " "This function returns *func*, which makes it possible to use it as a "
"decorator." "decorator."
msgstr "" msgstr ""
"Cette fonction retourne *func*, ce qui rend possible de l'utiliser en tant "
"que décorateur."
#: ../Doc/library/atexit.rst:51 #: ../Doc/library/atexit.rst:51
msgid "" msgid ""
@ -80,6 +110,11 @@ msgid ""
"the interpreter shuts down, even if it was registered more than once. :func:" "the interpreter shuts down, even if it was registered more than once. :func:"
"`unregister` silently does nothing if *func* was not previously registered." "`unregister` silently does nothing if *func* was not previously registered."
msgstr "" msgstr ""
"Retire *func* de la liste des fonctions à exécuter à l'arrêt de "
"linterpréteur. Après avoir appelé :func:`unregister`, *func* est garantie "
"de ne pas être appelée à l'arrêt de linterpréteur, même si elle a été "
"inscrite plus d'une fois. :func:`unregister` ne fait rien et reste muette dans le cas où "
"*func* n'a pas été inscrite précédemment."
#: ../Doc/library/atexit.rst:61 #: ../Doc/library/atexit.rst:61
msgid "Module :mod:`readline`" msgid "Module :mod:`readline`"
@ -90,6 +125,8 @@ msgid ""
"Useful example of :mod:`atexit` to read and write :mod:`readline` history " "Useful example of :mod:`atexit` to read and write :mod:`readline` history "
"files." "files."
msgstr "" msgstr ""
"Un exemple utile de l'usage de :mod:`atexit` pour lire et écrire des "
"fichiers d'historique :mod:`readline`."
#: ../Doc/library/atexit.rst:68 #: ../Doc/library/atexit.rst:68
msgid ":mod:`atexit` Example" msgid ":mod:`atexit` Example"
@ -102,17 +139,26 @@ msgid ""
"automatically when the program terminates without relying on the application " "automatically when the program terminates without relying on the application "
"making an explicit call into this module at termination. ::" "making an explicit call into this module at termination. ::"
msgstr "" msgstr ""
"Le simple exemple suivant démontre comment un module peut initialiser un "
"compteur depuis un fichier quand il est importé, et sauver le valeur mise à "
"jour du compteur automatiquement quand le programme se termine, sans avoir "
"besoin que l'application fasse un appel explicite dans ce module au moment "
"de l'arrêt de l'interpréteur. ::"
#: ../Doc/library/atexit.rst:92 #: ../Doc/library/atexit.rst:92
msgid "" msgid ""
"Positional and keyword arguments may also be passed to :func:`register` to " "Positional and keyword arguments may also be passed to :func:`register` to "
"be passed along to the registered function when it is called::" "be passed along to the registered function when it is called::"
msgstr "" msgstr ""
"Les arguments positionnels et par mot-clé peuvent aussi être passés à :func:"
"`register` afin d'être repassés à la fonction inscrite lors de son appel : ::"
#: ../Doc/library/atexit.rst:104 #: ../Doc/library/atexit.rst:104
msgid "Usage as a :term:`decorator`::" msgid "Usage as a :term:`decorator`::"
msgstr "Utilisation en temps que :term:`decorator` ::" msgstr "Utilisation en tant que :term:`décorateur <decorator>` : ::"
#: ../Doc/library/atexit.rst:112 #: ../Doc/library/atexit.rst:112
msgid "This only works with functions that can be called without arguments." msgid "This only works with functions that can be called without arguments."
msgstr "" msgstr ""
"Ceci marche uniquement avec des fonctions qui peuvent être appelées sans "
"argument."