Skip to content

Commit f853cc8

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 2e3c9b7 commit f853cc8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+6319
-6214
lines changed

c-api/allocation.po

Lines changed: 20 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.12\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2023-06-09 14:13+0000\n"
16+
"POT-Creation-Date: 2023-07-28 14:13+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1818
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1919
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -53,53 +53,35 @@ msgstr ""
5353
#: ../../c-api/allocation.rst:32
5454
msgid ""
5555
"Allocate a new Python object using the C structure type *TYPE* and the "
56-
"Python type object *type*. Fields not defined by the Python object header "
57-
"are not initialized; the object's reference count will be one. The size of "
58-
"the memory allocation is determined from the :c:member:`~PyTypeObject."
59-
"tp_basicsize` field of the type object."
56+
"Python type object *typeobj* (``PyTypeObject*``). Fields not defined by the "
57+
"Python object header are not initialized; the object's reference count will "
58+
"be one. The size of the memory allocation is determined from the :c:member:"
59+
"`~PyTypeObject.tp_basicsize` field of the type object."
6060
msgstr ""
61-
"Aloca um novo objeto Python usando o tipo de estrutura do C *TYPE* e o "
62-
"objeto Python do tipo *type*. Campos não definidos pelo cabeçalho do objeto "
63-
"Python não são inicializados; a contagem de referências do objeto será um. O "
64-
"tamanho da alocação de memória é determinado do campo :c:member:"
65-
"`~PyTypeObject.tp_basicsize` do objeto tipo."
6661

67-
#: ../../c-api/allocation.rst:41
62+
#: ../../c-api/allocation.rst:42
6863
msgid ""
6964
"Allocate a new Python object using the C structure type *TYPE* and the "
70-
"Python type object *type*. Fields not defined by the Python object header "
71-
"are not initialized. The allocated memory allows for the *TYPE* structure "
72-
"plus *size* fields of the size given by the :c:member:`~PyTypeObject."
73-
"tp_itemsize` field of *type*. This is useful for implementing objects like "
74-
"tuples, which are able to determine their size at construction time. "
75-
"Embedding the array of fields into the same allocation decreases the number "
76-
"of allocations, improving the memory management efficiency."
65+
"Python type object *typeobj* (``PyTypeObject*``). Fields not defined by the "
66+
"Python object header are not initialized. The allocated memory allows for "
67+
"the *TYPE* structure plus *size* (``Py_ssize_t``) fields of the size given "
68+
"by the :c:member:`~PyTypeObject.tp_itemsize` field of *typeobj*. This is "
69+
"useful for implementing objects like tuples, which are able to determine "
70+
"their size at construction time. Embedding the array of fields into the "
71+
"same allocation decreases the number of allocations, improving the memory "
72+
"management efficiency."
7773
msgstr ""
78-
"Aloca um novo objeto Python usando o tipo de estrutura do C *TYPE* e o "
79-
"objeto Python do tipo *type*. Campos não definidos pelo cabeçalho do objeto "
80-
"Python não são inicializados. A memória alocada permite a estrutura *TYPE* e "
81-
"os campos *size* do tamanho dado pelo campo :c:member:`~PyTypeObject."
82-
"tp_itemsize` do tipo *type*. Isto é útil para implementar objetos como "
83-
"tuplas, as quais são capazes de determinar seu tamanho no tempo da "
84-
"construção. Incorporando o vetor de campos dentro da mesma alocação "
85-
"diminuindo o numero de alocações, melhorando a eficiência do gerenciamento "
86-
"de memória."
8774

88-
#: ../../c-api/allocation.rst:53
75+
#: ../../c-api/allocation.rst:56
8976
msgid ""
90-
"Releases memory allocated to an object using :c:func:`PyObject_New` or :c:"
91-
"func:`PyObject_NewVar`. This is normally called from the :c:member:"
77+
"Releases memory allocated to an object using :c:macro:`PyObject_New` or :c:"
78+
"macro:`PyObject_NewVar`. This is normally called from the :c:member:"
9279
"`~PyTypeObject.tp_dealloc` handler specified in the object's type. The "
9380
"fields of the object should not be accessed after this call as the memory is "
9481
"no longer a valid Python object."
9582
msgstr ""
96-
"Libera memória alocada a um objeto usando :c:func:`PyObject_New` ou :c:func:"
97-
"`PyObject_NewVar`. Isto é normalmente chamado pelo :c:member:`~PyTypeObject."
98-
"tp_dealloc` manipulador especificado no tipo do objeto. Os campos do objeto "
99-
"não devem ser acessados após esta chamada como a memória não é mais um "
100-
"objeto Python válido."
10183

102-
#: ../../c-api/allocation.rst:62
84+
#: ../../c-api/allocation.rst:65
10385
msgid ""
10486
"Object which is visible in Python as ``None``. This should only be accessed "
10587
"using the :c:macro:`Py_None` macro, which evaluates to a pointer to this "
@@ -109,10 +91,10 @@ msgstr ""
10991
"usando a macro :c:macro:`Py_None`, o qual avalia como um ponteiro para este "
11092
"objeto."
11193

112-
#: ../../c-api/allocation.rst:69
94+
#: ../../c-api/allocation.rst:72
11395
msgid ":c:func:`PyModule_Create`"
11496
msgstr ":c:func:`PyModule_Create`"
11597

116-
#: ../../c-api/allocation.rst:70
98+
#: ../../c-api/allocation.rst:73
11799
msgid "To allocate and create extension modules."
118100
msgstr "Para alocar e criar módulos de extensão."

c-api/apiabiversion.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.12\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2023-06-09 14:13+0000\n"
17+
"POT-Creation-Date: 2023-07-28 14:13+0000\n"
1818
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1919
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
2020
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -190,9 +190,8 @@ msgstr ""
190190
">= ...``."
191191

192192
#: ../../c-api/apiabiversion.rst:63
193-
msgid "This version is also available via the symbol :data:`Py_Version`."
193+
msgid "This version is also available via the symbol :c:var:`Py_Version`."
194194
msgstr ""
195-
"Esta versão também está disponível através do símbolo :data:`Py_Version`."
196195

197196
#: ../../c-api/apiabiversion.rst:67
198197
msgid ""

c-api/arg.po

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@
1010
# Adson Rodrigues <adson.develop@gmail.com>, 2021
1111
# Rafael Marques <rafaelomarques@gmail.com>, 2021
1212
# Caio Carvalho <caiocarvalho.py@gmail.com>, 2021
13-
# Julia Rizza <contato@juliarizza.com>, 2021
1413
# Adorilson Bezerra <adorilson@gmail.com>, 2022
1514
# Welliton Malta <wellyton47@hotmail.com>, 2023
1615
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
16+
# Julia Rizza <contato@juliarizza.com>, 2023
1717
#
1818
#, fuzzy
1919
msgid ""
2020
msgstr ""
2121
"Project-Id-Version: Python 3.12\n"
2222
"Report-Msgid-Bugs-To: \n"
23-
"POT-Creation-Date: 2023-07-21 14:13+0000\n"
23+
"POT-Creation-Date: 2023-07-28 14:13+0000\n"
2424
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
25-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
25+
"Last-Translator: Julia Rizza <contato@juliarizza.com>, 2023\n"
2626
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
2727
"teams/5390/pt_BR/)\n"
2828
"MIME-Version: 1.0\n"
@@ -1075,10 +1075,8 @@ msgstr ""
10751075
#: ../../c-api/arg.rst:471
10761076
msgid ""
10771077
"This is an example of the use of this function, taken from the sources for "
1078-
"the :mod:`_weakref` helper module for weak references::"
1078+
"the :mod:`!_weakref` helper module for weak references::"
10791079
msgstr ""
1080-
"Este é um exemplo do uso dessa função, tirado das fontes do módulo auxiliar "
1081-
"para referências fracas :mod:`_weakref`::"
10821080

10831081
#: ../../c-api/arg.rst:487
10841082
msgid ""
@@ -1235,11 +1233,11 @@ msgstr "``u`` (:class:`str`) [const wchar_t \\*]"
12351233

12361234
#: ../../c-api/arg.rst:550
12371235
msgid ""
1238-
"Convert a null-terminated :c:expr:`wchar_t` buffer of Unicode (UTF-16 or "
1236+
"Convert a null-terminated :c:type:`wchar_t` buffer of Unicode (UTF-16 or "
12391237
"UCS-4) data to a Python Unicode object. If the Unicode buffer pointer is "
12401238
"``NULL``, ``None`` is returned."
12411239
msgstr ""
1242-
"Converte um buffer terminado por null :c:expr:`wchar_t` de dados Unicode "
1240+
"Converte um buffer terminado por null :c:type:`wchar_t` de dados Unicode "
12431241
"(UTF-16 ou UCS-4) para um objeto Python Unicode. Se o ponteiro do buffer "
12441242
"Unicode é ``NULL``, ``None`` é retornado."
12451243

c-api/buffer.po

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ msgid ""
2121
msgstr ""
2222
"Project-Id-Version: Python 3.12\n"
2323
"Report-Msgid-Bugs-To: \n"
24-
"POT-Creation-Date: 2023-06-09 14:13+0000\n"
24+
"POT-Creation-Date: 2023-07-28 14:13+0000\n"
2525
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
2626
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
2727
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -105,22 +105,13 @@ msgstr ""
105105
msgid ""
106106
"An example consumer of the buffer interface is the :meth:`~io.BufferedIOBase."
107107
"write` method of file objects: any object that can export a series of bytes "
108-
"through the buffer interface can be written to a file. While :meth:`write` "
108+
"through the buffer interface can be written to a file. While :meth:`!write` "
109109
"only needs read-only access to the internal contents of the object passed to "
110110
"it, other methods such as :meth:`~io.BufferedIOBase.readinto` need write "
111111
"access to the contents of their argument. The buffer interface allows "
112112
"objects to selectively allow or reject exporting of read-write and read-only "
113113
"buffers."
114114
msgstr ""
115-
"Um exemplo de consumidor da interface de buffer é o método :meth:`~io."
116-
"BufferedIOBase.write` de objetos arquivo: qualquer objeto que pode exportar "
117-
"uma série de bytes através da interface de buffer pode ser gravado em um "
118-
"arquivo. Enquanto :meth:`write` só precisa de acesso somente leitura aos "
119-
"conteúdos internos do objeto passado, outros métodos, tais como :meth:`~io."
120-
"BufferedIOBase.readinto` precisam de acesso de gravação ao conteúdo de seu "
121-
"argumento. A interface de buffer permite aos objetos permitir ou rejeitar "
122-
"seletivamente a exportação de buffers de leitura e escrita e de somente "
123-
"leitura."
124115

125116
#: ../../c-api/buffer.rst:53
126117
msgid ""
@@ -471,10 +462,8 @@ msgstr ""
471462

472463
#: ../../c-api/buffer.rst:228
473464
msgid ""
474-
"All :c:data:`Py_buffer` fields are unambiguously defined by the request type."
465+
"All :c:type:`Py_buffer` fields are unambiguously defined by the request type."
475466
msgstr ""
476-
"Todos :c:data:`Py_buffer` são inequivocamente definidos pelo tipo de "
477-
"solicitação."
478467

479468
#: ../../c-api/buffer.rst:232
480469
msgid "request-independent fields"
@@ -833,11 +822,9 @@ msgstr ""
833822

834823
#: ../../c-api/buffer.rst:467
835824
msgid ""
836-
"Return the implied :c:data:`~Py_buffer.itemsize` from :c:data:`~Py_buffer."
837-
"format`. On error, raise an exception and return -1."
825+
"Return the implied :c:member:`~Py_buffer.itemsize` from :c:member:"
826+
"`~Py_buffer.format`. On error, raise an exception and return -1."
838827
msgstr ""
839-
"Retorna o implícito :c:data:`~Py_buffer.itemsize` de :c:data:`~Py_buffer."
840-
"format`. Se houver erro, levanta uma exceção e retorna -1."
841828

842829
#: ../../c-api/buffer.rst:475
843830
msgid ""

c-api/bytes.po

Lines changed: 27 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@
1010
# Julio Gadioli Soares <jugaso@gmail.com>, 2021
1111
# Adorilson Bezerra <adorilson@gmail.com>, 2022
1212
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
13+
# Marco Rougeth <marco@rougeth.com>, 2023
1314
#
1415
#, fuzzy
1516
msgid ""
1617
msgstr ""
1718
"Project-Id-Version: Python 3.12\n"
1819
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2023-05-26 14:12+0000\n"
20+
"POT-Creation-Date: 2023-07-28 14:13+0000\n"
2021
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
21-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
22+
"Last-Translator: Marco Rougeth <marco@rougeth.com>, 2023\n"
2223
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
2324
"teams/5390/pt_BR/)\n"
2425
"MIME-Version: 1.0\n"
@@ -118,8 +119,8 @@ msgid "Comment"
118119
msgstr "Comentário"
119120

120121
#: ../../c-api/bytes.rst:67
121-
msgid ":attr:`%%`"
122-
msgstr ":attr:`%%`"
122+
msgid "``%%``"
123+
msgstr "``%%``"
123124

124125
#: ../../c-api/bytes.rst:67
125126
msgid "*n/a*"
@@ -130,8 +131,8 @@ msgid "The literal % character."
130131
msgstr "O caractere literal %."
131132

132133
#: ../../c-api/bytes.rst:69
133-
msgid ":attr:`%c`"
134-
msgstr ":attr:`%c`"
134+
msgid "``%c``"
135+
msgstr "``%c``"
135136

136137
#: ../../c-api/bytes.rst:69 ../../c-api/bytes.rst:72 ../../c-api/bytes.rst:90
137138
#: ../../c-api/bytes.rst:93
@@ -143,16 +144,16 @@ msgid "A single byte, represented as a C int."
143144
msgstr "Um único byte, representado como um C int."
144145

145146
#: ../../c-api/bytes.rst:72
146-
msgid ":attr:`%d`"
147-
msgstr ":attr:`%d`"
147+
msgid "``%d``"
148+
msgstr "``%d``"
148149

149150
#: ../../c-api/bytes.rst:72
150151
msgid "Equivalent to ``printf(\"%d\")``. [1]_"
151152
msgstr "Equivalente a ``printf(\"%d\")``. [1]_"
152153

153154
#: ../../c-api/bytes.rst:75
154-
msgid ":attr:`%u`"
155-
msgstr ":attr:`%u`"
155+
msgid "``%u``"
156+
msgstr "``%u``"
156157

157158
#: ../../c-api/bytes.rst:75
158159
msgid "unsigned int"
@@ -163,8 +164,8 @@ msgid "Equivalent to ``printf(\"%u\")``. [1]_"
163164
msgstr "Equivalente a ``printf(\"%u\")``. [1]_"
164165

165166
#: ../../c-api/bytes.rst:78
166-
msgid ":attr:`%ld`"
167-
msgstr ":attr:`%ld`"
167+
msgid "``%ld``"
168+
msgstr ""
168169

169170
#: ../../c-api/bytes.rst:78
170171
msgid "long"
@@ -175,8 +176,8 @@ msgid "Equivalent to ``printf(\"%ld\")``. [1]_"
175176
msgstr "Equivalente a ``printf(\"%ld\")``. [1]_"
176177

177178
#: ../../c-api/bytes.rst:81
178-
msgid ":attr:`%lu`"
179-
msgstr ":attr:`%lu`"
179+
msgid "``%lu``"
180+
msgstr ""
180181

181182
#: ../../c-api/bytes.rst:81
182183
msgid "unsigned long"
@@ -187,8 +188,8 @@ msgid "Equivalent to ``printf(\"%lu\")``. [1]_"
187188
msgstr "Equivalente a ``printf(\"%lu\")``. [1]_"
188189

189190
#: ../../c-api/bytes.rst:84
190-
msgid ":attr:`%zd`"
191-
msgstr ":attr:`%zd`"
191+
msgid "``%zd``"
192+
msgstr ""
192193

193194
#: ../../c-api/bytes.rst:84
194195
msgid ":c:type:`\\ Py_ssize_t`"
@@ -199,8 +200,8 @@ msgid "Equivalent to ``printf(\"%zd\")``. [1]_"
199200
msgstr "Equivalente a ``printf(\"%zd\")``. [1]_"
200201

201202
#: ../../c-api/bytes.rst:87
202-
msgid ":attr:`%zu`"
203-
msgstr ":attr:`%zu`"
203+
msgid "``%zu``"
204+
msgstr ""
204205

205206
#: ../../c-api/bytes.rst:87
206207
msgid "size_t"
@@ -211,24 +212,24 @@ msgid "Equivalent to ``printf(\"%zu\")``. [1]_"
211212
msgstr "Equivalente a ``printf(\"%zu\")``. [1]_"
212213

213214
#: ../../c-api/bytes.rst:90
214-
msgid ":attr:`%i`"
215-
msgstr ":attr:`%i`"
215+
msgid "``%i``"
216+
msgstr "``%i``"
216217

217218
#: ../../c-api/bytes.rst:90
218219
msgid "Equivalent to ``printf(\"%i\")``. [1]_"
219220
msgstr "Equivalente a ``printf(\"%i\")``. [1]_"
220221

221222
#: ../../c-api/bytes.rst:93
222-
msgid ":attr:`%x`"
223-
msgstr ":attr:`%x`"
223+
msgid "``%x``"
224+
msgstr "``%x``"
224225

225226
#: ../../c-api/bytes.rst:93
226227
msgid "Equivalent to ``printf(\"%x\")``. [1]_"
227228
msgstr "Equivalente a ``printf(\"%x\")``. [1]_"
228229

229230
#: ../../c-api/bytes.rst:96
230-
msgid ":attr:`%s`"
231-
msgstr ":attr:`%s`"
231+
msgid "``%s``"
232+
msgstr "``%s``"
232233

233234
#: ../../c-api/bytes.rst:96
234235
msgid "const char\\*"
@@ -239,8 +240,8 @@ msgid "A null-terminated C character array."
239240
msgstr "Uma matriz de caracteres C com terminação nula."
240241

241242
#: ../../c-api/bytes.rst:99
242-
msgid ":attr:`%p`"
243-
msgstr ":attr:`%p`"
243+
msgid "``%p``"
244+
msgstr "``%p``"
244245

245246
#: ../../c-api/bytes.rst:99
246247
msgid "const void\\*"

0 commit comments

Comments
 (0)