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
1 changed files with 18 additions and 2 deletions

View File

@ -16,41 +16,52 @@ msgstr ""
#: ../Doc/c-api/reflection.rst:6
msgid "Reflection"
msgstr ""
msgstr "Réflexion"
#: ../Doc/c-api/reflection.rst:10
msgid ""
"Return a dictionary of the builtins in the current execution frame, or the "
"interpreter of the thread state if no frame is currently executing."
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
msgid ""
"Return a dictionary of the local variables in the current execution frame, "
"or *NULL* if no frame is currently executing."
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
msgid ""
"Return a dictionary of the global variables in the current execution frame, "
"or *NULL* if no frame is currently executing."
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
msgid ""
"Return the current thread state's frame, which is *NULL* if no frame is "
"currently executing."
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
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
msgid ""
"Return the name of *func* if it is a function, class or instance object, "
"else the name of *func*\\s type."
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
msgid ""
@ -59,3 +70,8 @@ msgid ""
"and \" object\". Concatenated with the result of :c:func:"
"`PyEval_GetFuncName`, the result will be a description of *func*."
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*"