-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathreflection.po
More file actions
82 lines (73 loc) · 3.06 KB
/
reflection.po
File metadata and controls
82 lines (73 loc) · 3.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 1990-2020, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Python 2.7\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-02-09 18:46+0900\n"
"PO-Revision-Date: 2019-09-01 05:18+0000\n"
"Last-Translator: Ruan Aragão <ruanaragao2@gmail.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/python-doc/python-27/language/pt_BR/)\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: ../../c-api/reflection.rst:6
msgid "Reflection"
msgstr "Reflexão"
#: ../../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 "Retorna um dicionário "
#: ../../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 ""
"Retornar um dicionário das variáveis locais no quadro de execução atual, ou "
"*NULL* Se nenhum quadro está atualmente em execução."
#: ../../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 ""
"Retorna um dicionário de variavés globais no quadro de execução atual, ou "
"*NULL* se nenhum quadro está atualmente em execução."
#: ../../c-api/reflection.rst:28
msgid ""
"Return the current thread state's frame, which is *NULL* if no frame is "
"currently executing."
msgstr ""
"Retorne o quadro do estado da thread atual, que é * NULL * se nenhuma "
"moldura estiver sendo executada."
#: ../../c-api/reflection.rst:34
msgid "Return the line number that *frame* is currently executing."
msgstr "Retorna o número da linha do *frame* atualmente em execução."
#: ../../c-api/reflection.rst:39
msgid ""
"If there is a current frame and it is executing in restricted mode, return "
"true, otherwise false."
msgstr ""
#: ../../c-api/reflection.rst:45
msgid ""
"Return the name of *func* if it is a function, class or instance object, "
"else the name of *func*\\s type."
msgstr ""
"Retorna o nome de * func * se for uma função, classe ou objeto de instância,"
" senão o nome do tipo * func * \\ s."
#: ../../c-api/reflection.rst:51
msgid ""
"Return a description string, depending on the type of *func*. Return values "
"include \"()\" for functions and methods, \" constructor\", \" instance\", "
"and \" object\". Concatenated with the result of "
":c:func:`PyEval_GetFuncName`, the result will be a description of *func*."
msgstr ""
"Retornar uma seqüência de caracteres de descrição, dependendo do tipo de * "
"func *. Os valores de retorno incluem \"()\" para funções e métodos, "
"\"construtor\", \"instância\" e \"objeto\". Concatenado com o resultado de: "
"c: func: `PyEval_GetFuncName`, o resultado será uma descrição de * func *."