Skip to content

Commit 3e4ecf9

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 50ef8cd commit 3e4ecf9

25 files changed

+3033
-2439
lines changed

c-api/init.po

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ msgid ""
1818
msgstr ""
1919
"Project-Id-Version: Python 3.13\n"
2020
"Report-Msgid-Bugs-To: \n"
21-
"POT-Creation-Date: 2024-06-07 14:15+0000\n"
21+
"POT-Creation-Date: 2024-06-20 06:40+0000\n"
2222
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
2323
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
2424
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -1987,9 +1987,9 @@ msgid ""
19871987
"threading, including races and hard-to-debug crashes."
19881988
msgstr ""
19891989
"Se você preservar o isolamento, terá acesso à computação multi-core "
1990-
"adequada, sem as complicações que acompanham o uso de threads sem travas. A "
1991-
"falha em preservar o isolamento traz a exposição a todas as consequências de "
1992-
"threads sem travas, incluindo corridas e travamentos difíceis de depurar."
1990+
"adequada, sem as complicações que acompanham o uso de threads livres A falha "
1991+
"em preservar o isolamento traz a exposição a todas as consequências de "
1992+
"threads livres, incluindo corridas e travamentos difíceis de depurar."
19931993

19941994
#: ../../c-api/init.rst:1654
19951995
msgid ""

c-api/monitoring.po

+10-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-06-07 14:15+0000\n"
14+
"POT-Creation-Date: 2024-06-20 06:40+0000\n"
1515
"PO-Revision-Date: 2024-05-11 01:07+0000\n"
1616
"Last-Translator: Pedro Fonini, 2024\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -57,6 +57,15 @@ msgid ""
5757
"callbacks). The ``codelike`` argument should be an instance of :class:`types."
5858
"CodeType` or of a type that emulates it."
5959
msgstr ""
60+
"As funções abaixo permitem que extensões dispararem eventos de monitoramento "
61+
"emulando a execução de código Python. Cada uma dessas funções recebe uma "
62+
"estrutura ``PyMonitoringState`` que contém informação concisa sobre o estado "
63+
"de ativação de eventos, bem como os argumentos dos eventos, que incluem um "
64+
"``PyObject*`` representando o objeto de código, a posição da instrução no "
65+
"bytecode, e, em alguns casos, argumentos adicionais específicos para o "
66+
"evento (veja :mod:`sys.monitoring` para detalhes sobre as assinaturas das "
67+
"funções de retorno de diferentes eventos). O argumento ``codelike`` deve ser "
68+
"uma instância da classe :class:`types.CodeType` ou de um tipo que a emule."
6069

6170
#: ../../c-api/monitoring.rst:27
6271
msgid ""

c-api/refcounting.po

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-06-07 14:15+0000\n"
15+
"POT-Creation-Date: 2024-06-20 06:40+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:50+0000\n"
1717
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
1818
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -69,8 +69,8 @@ msgid ""
6969
"On :ref:`Python build with Free Threading <free-threading-build>`, if "
7070
"*refcnt* is larger than ``UINT32_MAX``, the object is made :term:`immortal`."
7171
msgstr ""
72-
"Em uma :ref:`construção do Python com threads threads sem travas <free-"
73-
"threading-build>`, se *refcnt* for maior que ``UINT32_MAX``, o objeto será "
72+
"Em uma :ref:`construção do Python com threads threads livres <free-threading-"
73+
"build>`, se *refcnt* for maior que ``UINT32_MAX``, o objeto será "
7474
"transformado em :term:`imortal`."
7575

7676
#: ../../c-api/refcounting.rst:40 ../../c-api/refcounting.rst:53

c-api/weakref.po

+20-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-06-07 14:15+0000\n"
14+
"POT-Creation-Date: 2024-06-20 06:40+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:50+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -176,3 +176,22 @@ msgstr ""
176176
"Isso itera pelas referências fracas para *object* e chama retornos de "
177177
"chamada para as referências que possuem um. Ele retorna quando todos os "
178178
"retornos de chamada foram tentados."
179+
180+
#: ../../c-api/weakref.rst:103
181+
msgid "Clears the weakrefs for *object* without calling the callbacks."
182+
msgstr ""
183+
184+
#: ../../c-api/weakref.rst:105
185+
msgid ""
186+
"This function is called by the :c:member:`~PyTypeObject.tp_dealloc` handler "
187+
"for types with finalizers (i.e., :meth:`~object.__del__`). The handler for "
188+
"those objects first calls :c:func:`PyObject_ClearWeakRefs` to clear weakrefs "
189+
"and call their callbacks, then the finalizer, and finally this function to "
190+
"clear any weakrefs that may have been created by the finalizer."
191+
msgstr ""
192+
193+
#: ../../c-api/weakref.rst:111
194+
msgid ""
195+
"In most circumstances, it's more appropriate to use :c:func:"
196+
"`PyObject_ClearWeakRefs` to clear weakrefs instead of this function."
197+
msgstr ""

0 commit comments

Comments
 (0)