-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathreflection.po
More file actions
87 lines (79 loc) · 3.96 KB
/
reflection.po
File metadata and controls
87 lines (79 loc) · 3.96 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
83
84
85
86
87
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2023, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Raphael Mendonça, 2019
# Ruan Aragão <ruanaragao2@gmail.com>, 2019
# Italo Penaforte <italo.penaforte@gmail.com>, 2019
# Rafael Fontenelle <rffontenelle@gmail.com>, 2019
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.7\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-23 16:56+0000\n"
"PO-Revision-Date: 2019-09-01 03:40+0000\n"
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2019\n"
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
"teams/5390/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
"1000000 == 0 ? 1 : 2;\n"
#: /home/runner/work/python-docs-tx-translations/python-docs-tx-translations/cpython/Doc/c-api/reflection.rst:6
msgid "Reflection"
msgstr "Reflexão"
#: /home/runner/work/python-docs-tx-translations/python-docs-tx-translations/cpython/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 ""
"Retornar um dicionário dos builtins no quadro de execução atual, ou o "
"intérprete do estado da linha se nenhum quadro está em execução."
#: /home/runner/work/python-docs-tx-translations/python-docs-tx-translations/cpython/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 ""
"Retorna um dicionário das variáveis locais no quadro de execução atual ou "
"``NULL`` se nenhum quadro estiver sendo executado no momento."
#: /home/runner/work/python-docs-tx-translations/python-docs-tx-translations/cpython/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 ""
"Retorna um dicionário das variáveis globais no quadro de execução atual ou "
"``NULL`` se nenhum quadro estiver sendo executado no momento."
#: /home/runner/work/python-docs-tx-translations/python-docs-tx-translations/cpython/Doc/c-api/reflection.rst:28
msgid ""
"Return the current thread state's frame, which is ``NULL`` if no frame is "
"currently executing."
msgstr ""
"Retorna o quadro do estado atual da thread, que é ``NULL`` se nenhum quadro "
"estiver em execução no momento."
#: /home/runner/work/python-docs-tx-translations/python-docs-tx-translations/cpython/Doc/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."
#: /home/runner/work/python-docs-tx-translations/python-docs-tx-translations/cpython/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 ""
"Retorna o nome de * func * se for uma função, classe ou objeto de instância, "
"senão o nome do tipo * func * \\ s."
#: /home/runner/work/python-docs-tx-translations/python-docs-tx-translations/cpython/Doc/c-api/reflection.rst:45
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 *."