Skip to content

Commit 1aef632

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent eaad51e commit 1aef632

File tree

13 files changed

+1170
-1129
lines changed

13 files changed

+1170
-1129
lines changed

c-api/bytes.po

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ msgid ""
1818
msgstr ""
1919
"Project-Id-Version: Python 3.12\n"
2020
"Report-Msgid-Bugs-To: \n"
21-
"POT-Creation-Date: 2023-11-05 17:24+0000\n"
21+
"POT-Creation-Date: 2023-12-29 14:13+0000\n"
2222
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
2323
"Last-Translator: Victor D. G., 2023\n"
2424
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -324,12 +324,10 @@ msgstr "Similar a :c:func:`PyBytes_AsString`, mas sem verificação de erro."
324324
#: ../../c-api/bytes.rst:156
325325
msgid ""
326326
"Return the null-terminated contents of the object *obj* through the output "
327-
"variables *buffer* and *length*."
327+
"variables *buffer* and *length*. Returns ``0`` on success."
328328
msgstr ""
329-
"Retorna os conteúdos terminados nulos do objeto *obj* através das variáveis "
330-
"de saída *buffer* e *length*."
331329

332-
#: ../../c-api/bytes.rst:159
330+
#: ../../c-api/bytes.rst:160
333331
msgid ""
334332
"If *length* is ``NULL``, the bytes object may not contain embedded null "
335333
"bytes; if it does, the function returns ``-1`` and a :exc:`ValueError` is "
@@ -339,7 +337,7 @@ msgstr ""
339337
"incorporados; se isso acontecer, a função retornará ``-1`` e a :exc:"
340338
"`ValueError` será levantado."
341339

342-
#: ../../c-api/bytes.rst:163
340+
#: ../../c-api/bytes.rst:164
343341
msgid ""
344342
"The buffer refers to an internal buffer of *obj*, which includes an "
345343
"additional null byte at the end (not counted in *length*). The data must "
@@ -355,15 +353,15 @@ msgstr ""
355353
"Se *obj* não é um objeto bytes, :c:func:`PyBytes_AsStringAndSize` retorna "
356354
"``-1`` e levanta :exc:`TypeError`."
357355

358-
#: ../../c-api/bytes.rst:170
356+
#: ../../c-api/bytes.rst:171
359357
msgid ""
360358
"Previously, :exc:`TypeError` was raised when embedded null bytes were "
361359
"encountered in the bytes object."
362360
msgstr ""
363361
"Anteriormente :exc:`TypeError` era levantado quando os bytes nulos "
364362
"incorporados eram encontrados no objeto bytes."
365363

366-
#: ../../c-api/bytes.rst:177
364+
#: ../../c-api/bytes.rst:178
367365
msgid ""
368366
"Create a new bytes object in *\\*bytes* containing the contents of *newpart* "
369367
"appended to *bytes*; the caller will own the new reference. The reference "
@@ -378,7 +376,7 @@ msgstr ""
378376
"valor de *\\*bytes* será definido como ``NULL``; a exceção apropriada será "
379377
"definida."
380378

381-
#: ../../c-api/bytes.rst:186
379+
#: ../../c-api/bytes.rst:187
382380
msgid ""
383381
"Create a new bytes object in *\\*bytes* containing the contents of *newpart* "
384382
"appended to *bytes*. This version releases the :term:`strong reference` to "
@@ -388,7 +386,7 @@ msgstr ""
388386
"anexado a bytes. Esta versão libera a :term:`strong reference` (referência "
389387
"forte) para newpart (ou seja, decrementa a contagem de referências a ele).\""
390388

391-
#: ../../c-api/bytes.rst:193
389+
#: ../../c-api/bytes.rst:194
392390
msgid ""
393391
"A way to resize a bytes object even though it is \"immutable\". Only use "
394392
"this to build up a brand new bytes object; don't use this if the bytes may "

howto/isolating-extensions.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-11-17 14:14+0000\n"
15+
"POT-Creation-Date: 2023-12-29 14:13+0000\n"
1616
"PO-Revision-Date: 2022-11-05 19:48+0000\n"
1717
"Last-Translator: Claudio Rogerio Carvalho Filho <excriptbrasil@gmail.com>, "
1818
"2022\n"
@@ -447,7 +447,7 @@ msgstr ""
447447
#: ../../howto/isolating-extensions.rst:339
448448
msgid ""
449449
"Define a traverse function using ``Py_tp_traverse``, which visits the type "
450-
"(e.g. using :c:expr:`Py_VISIT(Py_TYPE(self))`)."
450+
"(e.g. using ``Py_VISIT(Py_TYPE(self))``)."
451451
msgstr ""
452452

453453
#: ../../howto/isolating-extensions.rst:342
@@ -625,9 +625,9 @@ msgstr ""
625625

626626
#: ../../howto/isolating-extensions.rst:485
627627
msgid ""
628-
"Do not confuse the defining class with :c:expr:`Py_TYPE(self)`. If the "
629-
"method is called on a *subclass* of your type, ``Py_TYPE(self)`` will refer "
630-
"to that subclass, which may be defined in different module than yours."
628+
"Do not confuse the defining class with ``Py_TYPE(self)``. If the method is "
629+
"called on a *subclass* of your type, ``Py_TYPE(self)`` will refer to that "
630+
"subclass, which may be defined in different module than yours."
631631
msgstr ""
632632

633633
#: ../../howto/isolating-extensions.rst:490

library/bisect.po

Lines changed: 7 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-08-11 14:13+0000\n"
15+
"POT-Creation-Date: 2023-12-29 14:13+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:56+0000\n"
1717
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1818
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -49,18 +49,11 @@ msgid ""
4949
"The module is called :mod:`bisect` because it uses a basic bisection "
5050
"algorithm to do its work. Unlike other bisection tools that search for a "
5151
"specific value, the functions in this module are designed to locate an "
52-
"insertion point. Accordingly, the functions never call an :meth:`__eq__` "
53-
"method to determine whether a value has been found. Instead, the functions "
54-
"only call the :meth:`__lt__` method and will return an insertion point "
55-
"between values in an array."
52+
"insertion point. Accordingly, the functions never call an :meth:`~object."
53+
"__eq__` method to determine whether a value has been found. Instead, the "
54+
"functions only call the :meth:`~object.__lt__` method and will return an "
55+
"insertion point between values in an array."
5656
msgstr ""
57-
"O módulo é chamado de :mod:`bisect` porque usa um algoritmo básico de "
58-
"bisseção para fazer seu trabalho. Ao contrário de outras ferramentas de "
59-
"bisseção que buscam um valor específico, as funções neste módulo são "
60-
"projetadas para localizar um ponto de inserção. Da mesma forma, as funções "
61-
"nunca chamam um método :meth:`__eq__` para determinar se um valor foi "
62-
"encontrado. Em vez disso, as funções apenas chamam o método :meth:`__lt__` e "
63-
"retornarão um ponto de inserção entre valores em um vetor."
6457

6558
#: ../../library/bisect.rst:29
6659
msgid "The following functions are provided:"
@@ -147,12 +140,9 @@ msgstr "Insere *x* em *a* na ordem de classificação."
147140
#: ../../library/bisect.rst:75
148141
msgid ""
149142
"This function first runs :py:func:`~bisect.bisect_left` to locate an "
150-
"insertion point. Next, it runs the :meth:`insert` method on *a* to insert "
143+
"insertion point. Next, it runs the :meth:`!insert` method on *a* to insert "
151144
"*x* at the appropriate position to maintain sort order."
152145
msgstr ""
153-
"Esta função primeiro executa :py:func:`~bisect.bisect_left` para localizar "
154-
"um ponto de inserção. Em seguida, ele executa o método :meth:`insert` em *a* "
155-
"para inserir *x* na posição apropriada para manter a ordem de classificação."
156146

157147
#: ../../library/bisect.rst:79 ../../library/bisect.rst:99
158148
msgid ""
@@ -182,12 +172,9 @@ msgstr ""
182172
#: ../../library/bisect.rst:95
183173
msgid ""
184174
"This function first runs :py:func:`~bisect.bisect_right` to locate an "
185-
"insertion point. Next, it runs the :meth:`insert` method on *a* to insert "
175+
"insertion point. Next, it runs the :meth:`!insert` method on *a* to insert "
186176
"*x* at the appropriate position to maintain sort order."
187177
msgstr ""
188-
"Esta função primeiro executa :py:func:`~bisect.bisect_right` para localizar "
189-
"um ponto de inserção. Em seguida, ele executa o método :meth:`insert` em *a* "
190-
"para inserir *x* na posição apropriada para manter a ordem de classificação."
191178

192179
#: ../../library/bisect.rst:110
193180
msgid "Performance Notes"

0 commit comments

Comments
 (0)