Skip to content

Commit a4a2bd9

Browse files
Update translation
Co-Authored-By: Adorilson Bezerra <adorilson@gmail.com> Co-Authored-By: python-doc bot
1 parent 557a885 commit a4a2bd9

158 files changed

Lines changed: 16726 additions & 18615 deletions

File tree

Some content is hidden

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

c-api/intro.po

Lines changed: 475 additions & 422 deletions
Large diffs are not rendered by default.

library/__future__.po

Lines changed: 6 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.14\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-12-27 14:13+0000\n"
15+
"POT-Creation-Date: 2026-02-07 14:20+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Adorilson Bezerra <adorilson@gmail.com>, 2025\n"
1818
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -48,14 +48,9 @@ msgstr ""
4848
msgid ""
4949
"While these future statements are given additional special meaning by the "
5050
"Python compiler, they are still executed like any other import statement and "
51-
"the :mod:`__future__` exists and is handled by the import system the same "
51+
"the :mod:`!__future__` exists and is handled by the import system the same "
5252
"way any other Python module would be. This design serves three purposes:"
5353
msgstr ""
54-
"Embora o compilador Python dê um significado especial adicional a essas "
55-
"instruções future, elas ainda são executadas como qualquer outra instrução "
56-
"de importação. O módulo :mod:`__future__` existe e é tratado pelo sistema de "
57-
"importação da mesma forma que qualquer outro módulo Python. Isso serve a "
58-
"três propósitos:"
5954

6055
#: ../../library/__future__.rst:21
6156
msgid ""
@@ -69,39 +64,28 @@ msgstr ""
6964
msgid ""
7065
"To document when incompatible changes were introduced, and when they will be "
7166
"--- or were --- made mandatory. This is a form of executable documentation, "
72-
"and can be inspected programmatically via importing :mod:`__future__` and "
67+
"and can be inspected programmatically via importing :mod:`!__future__` and "
7368
"examining its contents."
7469
msgstr ""
75-
"Para documentar quando as mudanças incompatíveis foram introduzidas e quando "
76-
"elas serão --- ou foram --- obrigatórias. Esta é uma forma de documentação "
77-
"executável e pode ser inspecionada programaticamente por meio da importação :"
78-
"mod:`__future__` e da análise de seus conteúdos."
7970

8071
#: ../../library/__future__.rst:29
8172
msgid ""
8273
"To ensure that :ref:`future statements <future>` run under releases prior to "
83-
"Python 2.1 at least yield runtime exceptions (the import of :mod:"
84-
"`__future__` will fail, because there was no module of that name prior to "
74+
"Python 2.1 at least yield runtime exceptions (the import of :mod:`!"
75+
"__future__` will fail, because there was no module of that name prior to "
8576
"2.1)."
8677
msgstr ""
87-
"Para garantir que :ref:`instruções future <future>` sejam executadas em "
88-
"versões anteriores a Python 2.1, pelo menos, processe exceções de tempo de "
89-
"execução (a importação de :mod:`__future__` falhará, porque não havia nenhum "
90-
"módulo com esse nome antes de 2.1)."
9178

9279
#: ../../library/__future__.rst:34
9380
msgid "Module Contents"
9481
msgstr "Conteúdo do módulo"
9582

9683
#: ../../library/__future__.rst:36
9784
msgid ""
98-
"No feature description will ever be deleted from :mod:`__future__`. Since "
85+
"No feature description will ever be deleted from :mod:`!__future__`. Since "
9986
"its introduction in Python 2.1 the following features have found their way "
10087
"into the language using this mechanism:"
10188
msgstr ""
102-
"Nenhuma descrição de característica será excluída de :mod:`__future__`. "
103-
"Desde a sua introdução no Python 2.1, os seguintes recursos encontraram o "
104-
"caminho para o idioma usando esse mecanismo:"
10589

10690
#: ../../library/__future__.rst:45
10791
msgid "feature"

library/argparse.po

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.14\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2026-01-07 14:19+0000\n"
16+
"POT-Creation-Date: 2026-02-07 14:20+0000\n"
1717
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1818
"Last-Translator: Adorilson Bezerra <adorilson@gmail.com>, 2025\n"
1919
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -39,8 +39,8 @@ msgstr "**Código-fonte:** :source:`Lib/argparse.py`"
3939

4040
#: ../../library/argparse.rst:16
4141
msgid ""
42-
"While :mod:`argparse` is the default recommended standard library module for "
43-
"implementing basic command line applications, authors with more exacting "
42+
"While :mod:`!argparse` is the default recommended standard library module "
43+
"for implementing basic command line applications, authors with more exacting "
4444
"requirements for exactly how their command line applications behave may find "
4545
"it doesn't provide the necessary level of control. Refer to :ref:`choosing-"
4646
"an-argument-parser` for alternatives to consider when ``argparse`` doesn't "
@@ -49,16 +49,6 @@ msgid ""
4949
"option parameter values that start with ``-`` even when they correspond to "
5050
"another defined option)."
5151
msgstr ""
52-
"Embora o :mod:`argparse` seja o módulo de biblioteca padrão recomendado para "
53-
"implementar aplicações básicas de linha de comando, autores com requisitos "
54-
"mais rigorosos sobre como exatamente suas aplicações de linha de comando se "
55-
"comportam podem descobrir que ele não fornece o nível de controle "
56-
"necessário. Consulte :ref:`choosing-an-argument-parser` para alternativas a "
57-
"serem consideradas quando ``argparse`` não suporta comportamentos que a "
58-
"aplicação requer (como desabilitar completamente o suporte para opções "
59-
"intercaladas e argumentos posicionais, ou aceitar valores de parâmetros de "
60-
"opção que começam com ``-`` mesmo quando correspondem a outra opção "
61-
"definida)."
6252

6353
#: ../../library/argparse.rst-1
6454
msgid "Tutorial"

library/ast.po

Lines changed: 7 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.14\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2025-12-29 14:16+0000\n"
16+
"POT-Creation-Date: 2026-02-07 14:20+0000\n"
1717
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1818
"Last-Translator: Adorilson Bezerra <adorilson@gmail.com>, 2025\n"
1919
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -35,15 +35,11 @@ msgstr "**Código-fonte:** :source:`Lib/ast.py`"
3535

3636
#: ../../library/ast.rst:18
3737
msgid ""
38-
"The :mod:`ast` module helps Python applications to process trees of the "
38+
"The :mod:`!ast` module helps Python applications to process trees of the "
3939
"Python abstract syntax grammar. The abstract syntax itself might change "
4040
"with each Python release; this module helps to find out programmatically "
4141
"what the current grammar looks like."
4242
msgstr ""
43-
"O módulo :mod:`ast` ajuda as aplicações Python a processar árvores da "
44-
"gramática de sintaxe abstrata do Python. A sintaxe abstrata em si pode mudar "
45-
"em cada lançamento do Python; este módulo ajuda a descobrir "
46-
"programaticamente como é a gramática atual."
4743

4844
#: ../../library/ast.rst:23
4945
msgid ""
@@ -255,12 +251,8 @@ msgid ""
255251
"This is the base of all AST node classes. The actual node classes are "
256252
"derived from the :file:`Parser/Python.asdl` file, which is reproduced :ref:"
257253
"`above <abstract-grammar>`. They are defined in the :mod:`!_ast` C module "
258-
"and re-exported in :mod:`ast`."
254+
"and re-exported in :mod:`!ast`."
259255
msgstr ""
260-
"Esta é a base de todas as classes de nós de AST. As classes de nós reais são "
261-
"derivadas do arquivo :file:`Parser/Python.asdl`, que é reproduzido :ref:"
262-
"`acima <abstract-grammar>`. Elas são definidas no módulo C :mod:`!_ast` e "
263-
"reexportadas no :mod:`ast`."
264256

265257
#: ../../library/ast.rst:51
266258
msgid ""
@@ -4062,16 +4054,14 @@ msgstr ""
40624054
"ocorrências do mesmo valor (por exemplo, :class:`ast.Add`)."
40634055

40644056
#: ../../library/ast.rst:2221
4065-
msgid ":mod:`ast` helpers"
4066-
msgstr "Auxiliares de :mod:`ast`"
4057+
msgid ":mod:`!ast` helpers"
4058+
msgstr ""
40674059

40684060
#: ../../library/ast.rst:2223
40694061
msgid ""
4070-
"Apart from the node classes, the :mod:`ast` module defines these utility "
4062+
"Apart from the node classes, the :mod:`!ast` module defines these utility "
40714063
"functions and classes for traversing abstract syntax trees:"
40724064
msgstr ""
4073-
"Além das classes de nós, o módulo :mod:`ast` define essas funções e classes "
4074-
"utilitárias para percorrer árvores de sintaxe abstrata:"
40754065

40764066
#: ../../library/ast.rst:2228
40774067
msgid ""
@@ -4725,11 +4715,9 @@ msgstr "Uso na linha de comando"
47254715

47264716
#: ../../library/ast.rst:2600
47274717
msgid ""
4728-
"The :mod:`ast` module can be executed as a script from the command line. It "
4718+
"The :mod:`!ast` module can be executed as a script from the command line. It "
47294719
"is as simple as:"
47304720
msgstr ""
4731-
"O módulo :mod:`ast` pode ser executado como um script na linha de comando. É "
4732-
"tão simples quanto:"
47334721

47344722
#: ../../library/ast.rst:2603
47354723
msgid "python -m ast [-m <mode>] [-a] [infile]"

0 commit comments

Comments
 (0)