Skip to content

Commit 76cb2a4

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 5c92e25 commit 76cb2a4

33 files changed

+162
-51
lines changed

bugs.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.11\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2023-02-10 14:15+0000\n"
17+
"POT-Creation-Date: 2023-02-24 14:15+0000\n"
1818
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1919
"Last-Translator: Flávio Neves, 2022\n"
2020
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"

c-api/arg.po

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# Julia Rizza <contato@juliarizza.com>, 2021
1515
# Adorilson Bezerra <adorilson@gmail.com>, 2022
1616
# Rafael Fontenelle <rffontenelle@gmail.com>, 2022
17+
# Welliton Malta <wellyton47@hotmail.com>, 2023
1718
#
1819
#, fuzzy
1920
msgid ""
@@ -22,7 +23,7 @@ msgstr ""
2223
"Report-Msgid-Bugs-To: \n"
2324
"POT-Creation-Date: 2023-02-24 14:15+0000\n"
2425
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
25-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
26+
"Last-Translator: Welliton Malta <wellyton47@hotmail.com>, 2023\n"
2627
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
2728
"teams/5390/pt_BR/)\n"
2829
"MIME-Version: 1.0\n"
@@ -104,6 +105,8 @@ msgstr "Salvo indicação em contrário, os buffers não são terminados em NUL.
104105
#: ../../c-api/arg.rst:39
105106
msgid "There are three ways strings and buffers can be converted to C:"
106107
msgstr ""
108+
"Existem três maneiras pelas quais strings e buffers podem ser convertidos em "
109+
"C:"
107110

108111
#: ../../c-api/arg.rst:41
109112
msgid ""

c-api/code.po

Lines changed: 42 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,16 @@
66
# Translators:
77
# Claudio Rogerio Carvalho Filho <excriptbrasil@gmail.com>, 2021
88
# Rafael Fontenelle <rffontenelle@gmail.com>, 2021
9+
# Welliton Malta <wellyton47@hotmail.com>, 2023
910
#
1011
#, fuzzy
1112
msgid ""
1213
msgstr ""
1314
"Project-Id-Version: Python 3.11\n"
1415
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-02-10 14:15+0000\n"
16+
"POT-Creation-Date: 2023-02-24 14:15+0000\n"
1617
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
17-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2021\n"
18+
"Last-Translator: Welliton Malta <wellyton47@hotmail.com>, 2023\n"
1819
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
1920
"teams/5390/pt_BR/)\n"
2021
"MIME-Version: 1.0\n"
@@ -76,24 +77,37 @@ msgid ""
7677
"to result in incorrect execution or VM crashes. Use this function only with "
7778
"extreme care."
7879
msgstr ""
80+
"Retorna um novo objeto código. Se você precisar de um objeto código fictício "
81+
"para criar um quadro, use:c:func:`PyCode_NewEmpty`. Chamar :c:func:"
82+
"`PyCode_New` diretamente irá vincular você a uma versão precisa do Python, "
83+
"já que a definição do bytecode muda frequentemente. Os muitos argumentos "
84+
"dessa função são interdependentes de maneiras complexas, o que significa que "
85+
"alterações sutis nos valores provavelmente resultarão em execução incorreta "
86+
"ou travamentos da VM. Use esta função apenas com extremo cuidado."
7987

8088
#: ../../c-api/code.rst:45 ../../c-api/code.rst:55
8189
msgid "Added ``exceptiontable`` parameter."
82-
msgstr ""
90+
msgstr "Adicionado parâmetro ``exceptiontable``."
8391

8492
#: ../../c-api/code.rst:50
8593
msgid ""
8694
"Similar to :c:func:`PyCode_New`, but with an extra \"posonlyargcount\" for "
8795
"positional-only arguments. The same caveats that apply to ``PyCode_New`` "
8896
"also apply to this function."
8997
msgstr ""
98+
"Semelhante a :c:func:`PyCode_New` mas com um \"posonlyargcount\" extra para "
99+
"argumentos somente posicionais. As mesmas advertências que se aplicam a "
100+
"``PyCode_New`` também se aplicam a esta função."
90101

91102
#: ../../c-api/code.rst:60
92103
msgid ""
93104
"Return a new empty code object with the specified filename, function name, "
94105
"and first line number. The resulting code object will raise an ``Exception`` "
95106
"if executed."
96107
msgstr ""
108+
"Retorna um novo objeto código vazio com o nome de arquivo, nome da função e "
109+
"número da primeira linha especificados. O objeto código resultante irá "
110+
"levantar uma ``Exception`` se executado."
97111

98112
#: ../../c-api/code.rst:66
99113
msgid ""
@@ -111,38 +125,55 @@ msgid ""
111125
"API described in PEP 626 <https://peps.python.org/pep-0626/#out-of-process-"
112126
"debuggers-and-profilers>`_."
113127
msgstr ""
128+
"Para iterar eficientemente sobre os números de linha em um objeto código, "
129+
"use `a API descrita em PEP 626 <https://peps.python.org/pep-0626/#out-of-"
130+
"process-debuggers-and-profilers>`_ ."
114131

115132
#: ../../c-api/code.rst:74
116133
msgid ""
117134
"Sets the passed ``int`` pointers to the source code line and column numbers "
118135
"for the instruction at ``byte_offset``. Sets the value to ``0`` when "
119136
"information is not available for any particular element."
120137
msgstr ""
138+
"Define os ponteiros ``int`` passados para a linha do código-fonte e os "
139+
"números da coluna para a instrução em ``byte_offset``. Define o valor como "
140+
"``0`` quando as informações não estão disponíveis para nenhum elemento em "
141+
"particular."
121142

122143
#: ../../c-api/code.rst:78
123144
msgid "Returns ``1`` if the function succeeds and 0 otherwise."
124-
msgstr ""
145+
msgstr "Retorna ``1`` se a função for bem-sucedida e 0 caso contrário."
125146

126147
#: ../../c-api/code.rst:84
127148
msgid ""
128149
"Equivalent to the Python code ``getattr(co, 'co_code')``. Returns a strong "
129150
"reference to a :c:type:`PyBytesObject` representing the bytecode in a code "
130151
"object. On error, ``NULL`` is returned and an exception is raised."
131152
msgstr ""
153+
"Equivalente ao código Python ``getattr(co, 'co_code')``. Retorna uma "
154+
"referência forte a um :c:type:`PyBytesObject` representando o bytecode em um "
155+
"objeto código. Em caso de erro, ``NULL`` é retornado e uma exceção é "
156+
"levantada."
132157

133158
#: ../../c-api/code.rst:89
134159
msgid ""
135160
"This ``PyBytesObject`` may be created on-demand by the interpreter and does "
136161
"not necessarily represent the bytecode actually executed by CPython. The "
137162
"primary use case for this function is debuggers and profilers."
138163
msgstr ""
164+
"Este ``PyBytesObject`` pode ser criado sob demanda pelo interpretador e não "
165+
"representa necessariamente o bytecode realmente executado pelo CPython. O "
166+
"caso de uso primário para esta função são depuradores e criadores de perfil."
139167

140168
#: ../../c-api/code.rst:97
141169
msgid ""
142170
"Equivalent to the Python code ``getattr(co, 'co_varnames')``. Returns a new "
143171
"reference to a :c:type:`PyTupleObject` containing the names of the local "
144172
"variables. On error, ``NULL`` is returned and an exception is raised."
145173
msgstr ""
174+
"Equivalente ao código Python ``getattr(co, 'co_varnames')``. Retorna uma "
175+
"nova referência a um :c:type:`PyTupleObject` contendo os nomes das variáveis "
176+
"locais. Em caso de erro, ``NULL`` é retornado e uma exceção é levantada."
146177

147178
#: ../../c-api/code.rst:106
148179
msgid ""
@@ -151,10 +182,17 @@ msgid ""
151182
"variables that are referenced by nested functions. On error, ``NULL`` is "
152183
"returned and an exception is raised."
153184
msgstr ""
185+
"Equivalente ao código Python ``getattr(co, 'co_cellvars')``. Retorna uma "
186+
"nova referência a um :c:type:`PyTupleObject` contendo os nomes das variáveis "
187+
"locais referenciadas por funções aninhadas. Em caso de erro, ``NULL`` é "
188+
"retornado e uma exceção é levantada."
154189

155190
#: ../../c-api/code.rst:115
156191
msgid ""
157192
"Equivalent to the Python code ``getattr(co, 'co_freevars')``. Returns a new "
158193
"reference to a :c:type:`PyTupleObject` containing the names of the free "
159194
"variables. On error, ``NULL`` is returned and an exception is raised."
160195
msgstr ""
196+
"Equivalente ao código Python ``getattr(co, 'co_freevars')``. Retorna uma "
197+
"nova referência a um :c:type:`PyTupleObject` contendo os nomes das variáveis "
198+
"livres. Em caso de erro, ``NULL`` é retornado e uma exceção é levantada."

c-api/gcsupport.po

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
#
66
# Translators:
77
# Rodrigo Cândido, 2022
8-
# Andressa Lima Ferreira, 2022
8+
# Andressa Lima Ferreira, 2023
99
#
1010
#, fuzzy
1111
msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.11\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-02-10 14:15+0000\n"
15+
"POT-Creation-Date: 2023-02-24 14:15+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
17-
"Last-Translator: Andressa Lima Ferreira, 2022\n"
17+
"Last-Translator: Andressa Lima Ferreira, 2023\n"
1818
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
1919
"teams/5390/pt_BR/)\n"
2020
"MIME-Version: 1.0\n"
@@ -52,6 +52,11 @@ msgid ""
5252
"instances of the type are mutable, a :c:member:`~PyTypeObject.tp_clear` "
5353
"implementation must also be provided."
5454
msgstr ""
55+
"Para criar um tipo container, o :c:member:`~PyTypeObject.tp_flags` campo do "
56+
"tipo do objeto deve incluir o :const:`Py_TPFLAGS_HAVE_GC`e fornecer uma "
57+
"implementação do :c:member:`~PyTypeObject.tp_traverse` manipulador. Se as "
58+
"instâncias do tipo forem mutáveis, uma:c:member:`~PyTypeObject.tp_clear` "
59+
"implementação também deverá ser fornecida."
5560

5661
#: ../../c-api/gcsupport.rst:24
5762
msgid ""
@@ -88,12 +93,16 @@ msgid ""
8893
"Similarly, the deallocator for the object must conform to a similar pair of "
8994
"rules:"
9095
msgstr ""
96+
"Da mesma forma, o desalocador para o objeto deve estar em conformidade com "
97+
"regras semelhantes:"
9198

9299
#: ../../c-api/gcsupport.rst:39
93100
msgid ""
94101
"Before fields which refer to other containers are invalidated, :c:func:"
95102
"`PyObject_GC_UnTrack` must be called."
96103
msgstr ""
104+
"Antes que os campos que fazer referência a outros containers sejam "
105+
"invalidados, :c:func:`PyObject_GC_UnTrack` deve ser chamado."
97106

98107
#: ../../c-api/gcsupport.rst:42
99108
msgid ""

0 commit comments

Comments
 (0)