reflection.po

Co-Authored-By: mbelaloui <mbelalou@student.42.fr>
This commit is contained in:
Julien Palard 2019-02-26 11:34:25 +01:00
parent e37d619ca9
commit 2d8981225d

View File

@ -16,41 +16,52 @@ msgstr ""
#: ../Doc/c-api/reflection.rst:6 #: ../Doc/c-api/reflection.rst:6
msgid "Reflection" msgid "Reflection"
msgstr "" msgstr "Réflexion"
#: ../Doc/c-api/reflection.rst:10 #: ../Doc/c-api/reflection.rst:10
msgid "" msgid ""
"Return a dictionary of the builtins in the current execution frame, or the " "Return a dictionary of the builtins in the current execution frame, or the "
"interpreter of the thread state if no frame is currently executing." "interpreter of the thread state if no frame is currently executing."
msgstr "" msgstr ""
"Retourne un dictionnaire des commandes intégrées du thread en cours "
"d'exécution, ou l'interpréteur de l'état du thread si aucun n'est en cours "
"d'exécution"
#: ../Doc/c-api/reflection.rst:16 #: ../Doc/c-api/reflection.rst:16
msgid "" msgid ""
"Return a dictionary of the local variables in the current execution frame, " "Return a dictionary of the local variables in the current execution frame, "
"or *NULL* if no frame is currently executing." "or *NULL* if no frame is currently executing."
msgstr "" msgstr ""
"Retourne un dictionnaire des variables locales du thread en cours "
"d'exécution ou *NULL* si aucun thread n'est en cours d'execution"
#: ../Doc/c-api/reflection.rst:22 #: ../Doc/c-api/reflection.rst:22
msgid "" msgid ""
"Return a dictionary of the global variables in the current execution frame, " "Return a dictionary of the global variables in the current execution frame, "
"or *NULL* if no frame is currently executing." "or *NULL* if no frame is currently executing."
msgstr "" msgstr ""
"Retourne un dictionnaire des variables globales du thread en cours "
"d'execution ou *NULL* si aucun thread n'est en cours d'execution"
#: ../Doc/c-api/reflection.rst:28 #: ../Doc/c-api/reflection.rst:28
msgid "" msgid ""
"Return the current thread state's frame, which is *NULL* if no frame is " "Return the current thread state's frame, which is *NULL* if no frame is "
"currently executing." "currently executing."
msgstr "" msgstr ""
"Retourne l'état du thread actuel, qui est *NULL* si aucun thread n'est en "
"cours d'exécution"
#: ../Doc/c-api/reflection.rst:34 #: ../Doc/c-api/reflection.rst:34
msgid "Return the line number that *frame* is currently executing." msgid "Return the line number that *frame* is currently executing."
msgstr "" msgstr "Renvoie le numéro de ligne que le *frame* est en train d'exécuter"
#: ../Doc/c-api/reflection.rst:39 #: ../Doc/c-api/reflection.rst:39
msgid "" msgid ""
"Return the name of *func* if it is a function, class or instance object, " "Return the name of *func* if it is a function, class or instance object, "
"else the name of *func*\\s type." "else the name of *func*\\s type."
msgstr "" msgstr ""
"Renvoie le nom de *func* s'il s'agit d'une fonction, d'une classe ou d'un "
"objet d'instance, sinon le nom du type *func*"
#: ../Doc/c-api/reflection.rst:45 #: ../Doc/c-api/reflection.rst:45
msgid "" msgid ""
@ -59,3 +70,8 @@ msgid ""
"and \" object\". Concatenated with the result of :c:func:" "and \" object\". Concatenated with the result of :c:func:"
"`PyEval_GetFuncName`, the result will be a description of *func*." "`PyEval_GetFuncName`, the result will be a description of *func*."
msgstr "" msgstr ""
"Retourne une description en chaîne de caractère, en fonction du type de "
"*fonc*. Les valeurs de retour incluent \"()\" pour les fonction et les "
"méthodes, \"constructeur\", \"instance\" et \"objet\". Concaténé avec le "
"résultat de :c:func:`PyEval_GetFuncName`, le résultat sera une description "
"de *func*"