Skip to content

Commit d7a7047

Browse files
Update translation
Co-Authored-By: Adorilson Bezerra <adorilson@gmail.com>
1 parent 13fc625 commit d7a7047

File tree

3 files changed

+22
-7
lines changed

3 files changed

+22
-7
lines changed

library/asyncio-task.po

Lines changed: 17 additions & 2 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: 2025-12-23 15:50+0000\n"
16+
"POT-Creation-Date: 2025-12-25 15:42+0000\n"
1717
"PO-Revision-Date: 2025-07-18 19:57+0000\n"
1818
"Last-Translator: Adorilson Bezerra <adorilson@gmail.com>, 2025\n"
1919
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -2041,13 +2041,15 @@ msgstr ""
20412041

20422042
#: ../../library/asyncio-task.rst:1343
20432043
msgid "Returns the remaining number of cancellation requests."
2044-
msgstr ""
2044+
msgstr "Retorna o número restante de pedidos de cancelamento."
20452045

20462046
#: ../../library/asyncio-task.rst:1345
20472047
msgid ""
20482048
"Note that once execution of a cancelled task completed, further calls to :"
20492049
"meth:`uncancel` are ineffective."
20502050
msgstr ""
2051+
"Note que, uma vez concluída a execução de uma tarefa cancelada, chamadas "
2052+
"adicionais para :meth:`uncancel` são ineficazes."
20512053

20522054
#: ../../library/asyncio-task.rst:1350
20532055
msgid ""
@@ -2071,6 +2073,11 @@ msgid ""
20712073
" # Outer code not affected by the timeout:\n"
20722074
" await unrelated_code()"
20732075
msgstr ""
2076+
"async def make_request_with_timeout(): try: async with asyncio."
2077+
"timeout(1): # Bloco estruturado afetado pelo timeout: "
2078+
"await make_request() await make_another_request() except "
2079+
"TimeoutError: log(\"Ocorreu um timeout\") # Código externo não "
2080+
"afetado pelo timeout: await unrelated_code()"
20742081

20752082
#: ../../library/asyncio-task.rst:1368
20762083
msgid ""
@@ -2080,13 +2087,21 @@ msgid ""
20802087
"`uncancel`. :class:`TaskGroup` context managers use :func:`uncancel` in a "
20812088
"similar fashion."
20822089
msgstr ""
2090+
"Enquanto o bloco com ``make_request()`` e ``make_another_request()`` possa "
2091+
"ser cancelado devido ao timeout, ``unrelated_code()`` deve continuar a "
2092+
"executar mesmo em caso de timeout. Isto é implementado com :meth:`uncancel`. "
2093+
"Os gerenciadores de contexto :class:`TaskGroup` usam :func:`uncancel` de "
2094+
"forma semelhante."
20832095

20842096
#: ../../library/asyncio-task.rst:1374
20852097
msgid ""
20862098
"If end-user code is, for some reason, suppressing cancellation by catching :"
20872099
"exc:`CancelledError`, it needs to call this method to remove the "
20882100
"cancellation state."
20892101
msgstr ""
2102+
"Se o código do usuário final, por alguma razão, estiver suprimindo o "
2103+
"cancelamento ao capturar :exc:`CancelledError`, precisa chamar este método "
2104+
"para remover o estado de cancelamento."
20902105

20912106
#: ../../library/asyncio-task.rst:1380
20922107
msgid ""

potodo.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
1 directory 66.69% done
2-
└── 3.12/ 66.69% done
1+
1 directory 66.70% done
2+
└── 3.12/ 66.70% done
33
├── c-api/ 52.74% done
44
│ ├── exceptions.po 63.0% translated 232/366
55
│ ├── frame.po 80.0% translated 29/36
@@ -38,7 +38,7 @@
3838
│ ├── sorting.po 66.0% translated 50/75
3939
│ └── unicode.po 20.0% translated 30/145
4040
├── installing/ 100.00% done
41-
├── library/ 60.50% done
41+
├── library/ 60.51% done
4242
│ ├── 2to3.po 91.0% translated 121/132
4343
│ ├── array.po 95.0% translated 80/84
4444
│ ├── ast.po 83.0% translated 255/306
@@ -51,7 +51,7 @@
5151
│ ├── asyncio-runner.po 13.0% translated 5/37
5252
│ ├── asyncio-stream.po 72.0% translated 71/98
5353
│ ├── asyncio-sync.po 12.0% translated 12/99
54-
│ ├── asyncio-task.po 66.0% translated 168/254
54+
│ ├── asyncio-task.po 68.0% translated 173/254
5555
│ ├── audioop.po 9.0% translated 5/53
5656
│ ├── base64.po 33.0% translated 20/60
5757
│ ├── bdb.po 98.0% translated 109/111

stats.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"completion": "66.69%", "translated": 44695, "entries": 62021, "updated_at": "2025-12-24T23:40:46+00:00Z"}
1+
{"completion": "66.7%", "translated": 44700, "entries": 62021, "updated_at": "2025-12-25T23:40:31+00:00Z"}

0 commit comments

Comments
 (0)