Skip to content

Commit ef29df9

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent cddf9ee commit ef29df9

File tree

9 files changed

+88
-34
lines changed

9 files changed

+88
-34
lines changed

c-api/call.po

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ msgid ""
1717
msgstr ""
1818
"Project-Id-Version: Python 3.11\n"
1919
"Report-Msgid-Bugs-To: \n"
20-
"POT-Creation-Date: 2022-11-12 16:28+0000\n"
20+
"POT-Creation-Date: 2022-11-19 16:26+0000\n"
2121
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
2222
"Last-Translator: Mozart Mozart, 2022\n"
2323
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
@@ -217,13 +217,20 @@ msgid ""
217217
"allow callables such as bound methods to make their onward calls (which "
218218
"include a prepended *self* argument) very efficiently."
219219
msgstr ""
220+
"Sempre que podem realizar a um custo tão baixo (sem alocações adicionais), "
221+
"invocadores são encorajados a usar :const:`PY_VECTORCALL_ARGUMENTS_OFFSET`. "
222+
"Isso permitirá invocados como métodos vinculados a instâncias fazerem suas "
223+
"próprias invocações (o que inclui um argumento *self*) muito eficientemente."
220224

221225
#: ../../c-api/call.rst:102
222226
msgid ""
223227
"To call an object that implements vectorcall, use a :ref:`call API <capi-"
224228
"call>` function as with any other callable. :c:func:`PyObject_Vectorcall` "
225229
"will usually be most efficient."
226230
msgstr ""
231+
"Para invocar um objeto que implementa vectorcall, utilize a função :ref:"
232+
"`call API <capi-call>` como qualquer outra invocável. :c:func:"
233+
"`PyObject_Vectorcall` será normalmente mais eficiente."
227234

228235
#: ../../c-api/call.rst:109
229236
msgid ""

faq/general.po

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,24 +287,30 @@ msgstr "Como funciona o esquema de numeração de versões do Python?"
287287

288288
#: ../../faq/general.rst:128
289289
msgid "Python versions are numbered \"A.B.C\" or \"A.B\":"
290-
msgstr ""
290+
msgstr "As versões de Python são enumeradas como \"A.B.C\" ou \"A.B\":"
291291

292292
#: ../../faq/general.rst:130
293293
msgid ""
294294
"*A* is the major version number -- it is only incremented for really major "
295295
"changes in the language."
296296
msgstr ""
297+
"*A* é o número da versão principal - sendo incrementada apenas em grandes "
298+
"mudanças na linguagem. "
297299

298300
#: ../../faq/general.rst:132
299301
msgid ""
300302
"*B* is the minor version number -- it is incremented for less earth-"
301303
"shattering changes."
302304
msgstr ""
305+
"*B* é o número da versão menor - sendo incrementada apenas para mudanças "
306+
"menos estruturais. "
303307

304308
#: ../../faq/general.rst:134
305309
msgid ""
306310
"*C* is the micro version number -- it is incremented for each bugfix release."
307311
msgstr ""
312+
"*C* é o número para micro versão - sendo incrementada apenas para lançamento "
313+
"com correção de bugs. "
308314

309315
#: ../../faq/general.rst:136
310316
msgid "See :pep:`6` for more information about bugfix releases."

library/itertools.po

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -634,6 +634,9 @@ msgid ""
634634
"achieved by substituting multiplicative code such as: ``(start + step * i "
635635
"for i in count())``."
636636
msgstr ""
637+
"Quando é feita uma contagem usando números de ponto flutuante, é possível "
638+
"ter melhor precisão substituindo código multiplicativo como ``(start + step "
639+
"* i for i in count())``."
637640

638641
#: ../../library/itertools.rst:319
639642
msgid "Added *step* argument and allowed non-integer arguments."
@@ -645,6 +648,9 @@ msgid ""
645648
"each. When the iterable is exhausted, return elements from the saved copy. "
646649
"Repeats indefinitely. Roughly equivalent to::"
647650
msgstr ""
651+
"Crie um iterador que devolve elementos do iterável assim como salva uma "
652+
"cópia de cada um. Quando o iterável é esgotado, devolve elementos da cópia "
653+
"salva. Repete indefinidamente. Aproximadamente equivalente a::"
648654

649655
#: ../../library/itertools.rst:338
650656
msgid ""

library/operator.po

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@
77
# Claudio Rogerio Carvalho Filho <excriptbrasil@gmail.com>, 2021
88
# Misael borges <misael@planosassessoria.com.br>, 2021
99
# Rafael Fontenelle <rffontenelle@gmail.com>, 2022
10+
# Adorilson Bezerra <adorilson@gmail.com>, 2022
1011
#
1112
#, fuzzy
1213
msgid ""
1314
msgstr ""
1415
"Project-Id-Version: Python 3.11\n"
1516
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2022-11-12 04:32+0000\n"
17+
"POT-Creation-Date: 2022-11-19 16:26+0000\n"
1718
"PO-Revision-Date: 2021-06-28 01:10+0000\n"
18-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
19+
"Last-Translator: Adorilson Bezerra <adorilson@gmail.com>, 2022\n"
1920
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
2021
"teams/5390/pt_BR/)\n"
2122
"MIME-Version: 1.0\n"
@@ -27,7 +28,7 @@ msgstr ""
2728

2829
#: ../../library/operator.rst:2
2930
msgid ":mod:`operator` --- Standard operators as functions"
30-
msgstr ":mod:`operator` --- Operadores padrão como funções"
31+
msgstr ":mod:`operator` --- Operadores padrões como funções"
3132

3233
#: ../../library/operator.rst:9
3334
msgid "**Source code:** :source:`Lib/operator.py`"
@@ -65,7 +66,7 @@ msgid ""
6566
"after the rich comparison operators they support:"
6667
msgstr ""
6768
"As funções de comparação de objetos são úteis para todos os objetos e são "
68-
"nomeadas após os operadores de comparação que os mesmos suportam:"
69+
"nomeadas conforme os operadores de comparação que os mesmos suportam:"
6970

7071
#: ../../library/operator.rst:45
7172
msgid ""
@@ -77,23 +78,22 @@ msgid ""
7778
"which may or may not be interpretable as a Boolean value. See :ref:"
7879
"`comparisons` for more information about rich comparisons."
7980
msgstr ""
80-
"Executa \"comparações ricas\" entre *a* e *b*. Especialmente, ``lt(a, b)`` é "
81-
"equivalente a ``a < b``, ``le(a, b)`` é equivalente a ``a <= b``, ``eq(a, "
81+
"Executam \"comparações ricas\" entre *a* e *b*. Especialmente, ``lt(a, b)`` "
82+
"é equivalente a ``a < b``, ``le(a, b)`` é equivalente a ``a <= b``, ``eq(a, "
8283
"b)`` é equivalente a ``a == b``, ``ne(a, b)`` é equivalente a ``a != b``, "
8384
"``gt(a, b)`` é equivalente a ``a > b`` e ``ge(a, b)`` é equivalente a ``a >= "
8485
"b``. Observe que essas funções podem retornar qualquer valor, que pode ou "
8586
"não ser interpretável como um valor booleano. Consulte :ref:`comparisons` "
86-
"para obter mais informações sobre comparações ricas. Como as funções de "
87-
"comparação de objetos são úteis para todos os objetos e são nomeados pelos "
88-
"sistemas de comparação."
87+
"para obter mais informações sobre comparações ricas."
8988

9089
#: ../../library/operator.rst:54
9190
msgid ""
9291
"The logical operations are also generally applicable to all objects, and "
9392
"support truth tests, identity tests, and boolean operations:"
9493
msgstr ""
9594
"As operações lógicas também são geralmente aplicáveis a todos os objetos e "
96-
"suportam testes de verdade, testes de identidade e operações booleanas:"
95+
"tem suporte para testes de verdade, testes de identidade e operações "
96+
"booleanas:"
9797

9898
#: ../../library/operator.rst:61
9999
msgid ""
@@ -103,7 +103,7 @@ msgid ""
103103
"`__len__` methods.)"
104104
msgstr ""
105105
"Retorna o resultado de :keyword:`not` *obj*. (Veja que não existe nenhum "
106-
"método :meth:`__not__` para a instância do objetos; apenas o núcleo do "
106+
"método :meth:`__not__` para instâncias de objetos; apenas o núcleo do "
107107
"interpretador definirá esta operação. O resultado será afetado pelos "
108108
"métodos :meth:`__bool__` e :meth:`__len__`.)"
109109

@@ -112,8 +112,8 @@ msgid ""
112112
"Return :const:`True` if *obj* is true, and :const:`False` otherwise. This "
113113
"is equivalent to using the :class:`bool` constructor."
114114
msgstr ""
115-
"Retorna :const:`True` se o *obj* for True, e :const:`False` caso contrário. "
116-
"Isso é equivalente a utilizar a construção :class:`bool`."
115+
"Retorna :const:`True` se o *obj* for verdadeiro, e :const:`False` caso "
116+
"contrário. Isso é equivalente a utilizar a construção :class:`bool`."
117117

118118
#: ../../library/operator.rst:75
119119
msgid "Return ``a is b``. Tests object identity."
@@ -133,11 +133,11 @@ msgstr "Retorna o valor absoluto de *obj*."
133133

134134
#: ../../library/operator.rst:95
135135
msgid "Return ``a + b``, for *a* and *b* numbers."
136-
msgstr "Retorna ``a + b``, onde *a* e *b* são números"
136+
msgstr "Retorna ``a + b``, onde *a* e *b* são números."
137137

138138
#: ../../library/operator.rst:101
139139
msgid "Return the bitwise and of *a* and *b*."
140-
msgstr "Retornar bit a bit de *a* e *b*."
140+
msgstr "Retorna bit a bit de *a* e *b*."
141141

142142
#: ../../library/operator.rst:107
143143
msgid "Return ``a // b``."
@@ -172,7 +172,7 @@ msgstr "Retorna ``a % b``."
172172

173173
#: ../../library/operator.rst:143
174174
msgid "Return ``a * b``, for *a* and *b* numbers."
175-
msgstr "Retorna ``a * b``, onde *a* e *b* são números"
175+
msgstr "Retorna ``a * b``, onde *a* e *b* são números."
176176

177177
#: ../../library/operator.rst:149
178178
msgid "Return ``a @ b``."

whatsnew/2.1.po

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,16 @@
1313
# (Douglas da Silva) <dementikovalev@yandex.ru>, 2021
1414
# Misael borges <misael@planosassessoria.com.br>, 2021
1515
# Lucas Rafaldini <lucas.rafaldini@gmail.com>, 2022
16+
# Adorilson Bezerra <adorilson@gmail.com>, 2022
1617
#
1718
#, fuzzy
1819
msgid ""
1920
msgstr ""
20-
"Project-Id-Version: Python 3.10\n"
21+
"Project-Id-Version: Python 3.11\n"
2122
"Report-Msgid-Bugs-To: \n"
22-
"POT-Creation-Date: 2022-11-04 16:29+0000\n"
23+
"POT-Creation-Date: 2022-11-19 16:26+0000\n"
2324
"PO-Revision-Date: 2021-06-28 01:51+0000\n"
24-
"Last-Translator: Lucas Rafaldini <lucas.rafaldini@gmail.com>, 2022\n"
25+
"Last-Translator: Adorilson Bezerra <adorilson@gmail.com>, 2022\n"
2526
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
2627
"teams/5390/pt_BR/)\n"
2728
"MIME-Version: 1.0\n"
@@ -975,6 +976,13 @@ msgid ""
975976
"but registering software at the Vaults is optional, and many people did not "
976977
"bother."
977978
msgstr ""
979+
"Uma queixa comum de pessoas que usam Python é que não existe um catálogo "
980+
"único de todos os módulos existentes. Vaults of Parnassus de T. Middleton em "
981+
"``www.vex.net/parnassus/`` (aposentado em fevereiro de 2009, `disponível no "
982+
"Internet Archive Wayback Machine <https://web.archive.org/web/20090130140102/"
983+
"http://www.vex.net/parnassus/>`_) foi o maior catálogo de módulos Python, "
984+
"mas registrar software no Vaults é opcional, e muitas pessoas não se "
985+
"importam em fazer isso."
978986

979987
#: ../../whatsnew/2.1.rst:551
980988
msgid ""

whatsnew/3.11.po

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1679,16 +1679,21 @@ msgid ""
16791679
"(equivalent to ``sys.exc_info()[1]``). (Contributed by Irit Katriel in :"
16801680
"issue:`46328`.)"
16811681
msgstr ""
1682+
"Adiciona :func:`sys.exception` que retorna a instância de exceção ativa "
1683+
"(equivalente a ``sys.exc_info()[1]``). (Contribuição de Irit Katriel em :"
1684+
"issue:`46328`.)"
16821685

16831686
#: ../../whatsnew/3.11.rst:1033
16841687
msgid ""
16851688
"Add the :data:`sys.flags.safe_path <sys.flags>` flag. (Contributed by Victor "
16861689
"Stinner in :gh:`57684`.)"
16871690
msgstr ""
1691+
"Adiciona o sinalizador :data:`sys.flags.safe_path <sys.flags>`. "
1692+
"(Contribuição de Victor Stinner em :gh:`57684`.)"
16881693

16891694
#: ../../whatsnew/3.11.rst:1040
16901695
msgid "sysconfig"
1691-
msgstr ""
1696+
msgstr "sysconfig"
16921697

16931698
#: ../../whatsnew/3.11.rst:1042
16941699
msgid ""
@@ -1703,10 +1708,21 @@ msgid ""
17031708
"installation scheme to determine the paths, as does :mod:`venv`. "
17041709
"(Contributed by Miro Hrončok in :issue:`45413`.)"
17051710
msgstr ""
1711+
"Três novos :ref:`esquemas de instalação <installation_paths>` (*posix_venv*, "
1712+
"*nt_venv* e *venv*) foram adicionados e são usados quando o Python cria "
1713+
"novos ambientes virtuais ou quando está sendo executado a partir de um "
1714+
"ambiente virtual. Os dois primeiros esquemas (*posix_venv* e *nt_venv*) são "
1715+
"específicos do SO para não Windows e Windows, o *venv* é essencialmente um "
1716+
"apelido para um deles de acordo com o SO em que o Python é executado. Isso é "
1717+
"útil para distribuidores downstream que modificam :func:`sysconfig."
1718+
"get_preferred_scheme`. O código de terceiros que cria novos ambientes "
1719+
"virtuais deve usar o novo esquema de instalação *venv* para determinar os "
1720+
"caminhos, assim como :mod:`venv`. (Contribuição de Miro Hrončok em :issue:"
1721+
"`45413`.)"
17061722

17071723
#: ../../whatsnew/3.11.rst:1059
17081724
msgid "tempfile"
1709-
msgstr ""
1725+
msgstr "tempfile"
17101726

17111727
#: ../../whatsnew/3.11.rst:1061
17121728
msgid ""
@@ -1716,6 +1732,11 @@ msgid ""
17161732
"objects, such as compression modules. (Contributed by Carey Metcalfe in :gh:"
17171733
"`70363`.)"
17181734
msgstr ""
1735+
"Objetos :class:`~tempfile.SpooledTemporaryFile` agora implementam totalmente "
1736+
"os métodos de :class:`io.BufferedIOBase` ou :class:`io.TextIOBase` "
1737+
"(dependendo do modo de arquivo). Isso permite que eles funcionem "
1738+
"corretamente com APIs que esperam objetos semelhantes a arquivos, como "
1739+
"módulos de compactação. (Contribuição de Carey Metcalfe em :gh:`70363`.)"
17191740

17201741
#: ../../whatsnew/3.11.rst:1072
17211742
msgid "threading"
@@ -1730,6 +1751,12 @@ msgid ""
17301751
"affected by system clock changes. (Contributed by Victor Stinner in :issue:"
17311752
"`41710`.)"
17321753
msgstr ""
1754+
"No Unix, se a função ``sem_clockwait()`` estiver disponível na biblioteca C "
1755+
"(glibc 2.30 e mais recente), o método :meth:`threading.Lock.acquire` agora "
1756+
"usa o relógio monotônico (:data:`time. CLOCK_MONOTONIC`) para o tempo "
1757+
"limite, em vez de usar o relógio do sistema (:data:`time.CLOCK_REALTIME`), "
1758+
"para não ser afetado pelas alterações do relógio do sistema. (Contribuição "
1759+
"de Victor Stinner em :issue:`41710`.)"
17331760

17341761
#: ../../whatsnew/3.11.rst:1085
17351762
msgid "time"

whatsnew/3.2.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010
# Ricardo Cappellano <rcappellano@gmail.com>, 2021
1111
# Marco Rougeth <marco@rougeth.com>, 2021
1212
# Claudio Rogerio Carvalho Filho <excriptbrasil@gmail.com>, 2021
13-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2021
13+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2022
1414
#
1515
#, fuzzy
1616
msgid ""
1717
msgstr ""
1818
"Project-Id-Version: Python 3.11\n"
1919
"Report-Msgid-Bugs-To: \n"
20-
"POT-Creation-Date: 2022-11-05 19:46+0000\n"
20+
"POT-Creation-Date: 2022-11-19 16:26+0000\n"
2121
"PO-Revision-Date: 2021-06-29 13:04+0000\n"
22-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2021\n"
22+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
2323
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
2424
"teams/5390/pt_BR/)\n"
2525
"MIME-Version: 1.0\n"
@@ -2134,7 +2134,7 @@ msgstr ""
21342134

21352135
#: ../../whatsnew/3.2.rst:1869
21362136
msgid "tempfile"
2137-
msgstr ""
2137+
msgstr "tempfile"
21382138

21392139
#: ../../whatsnew/3.2.rst:1871
21402140
msgid ""
@@ -2278,7 +2278,7 @@ msgstr ""
22782278

22792279
#: ../../whatsnew/3.2.rst:2045
22802280
msgid "sysconfig"
2281-
msgstr ""
2281+
msgstr "sysconfig"
22822282

22832283
#: ../../whatsnew/3.2.rst:2047
22842284
msgid ""

whatsnew/3.3.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
# Marco Rougeth <marco@rougeth.com>, 2021
1212
# Claudio Rogerio Carvalho Filho <excriptbrasil@gmail.com>, 2021
1313
# Willian C Lopes <willclbr@gmail.com>, 2021
14-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2021
14+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2022
1515
#
1616
#, fuzzy
1717
msgid ""
1818
msgstr ""
19-
"Project-Id-Version: Python 3.10\n"
19+
"Project-Id-Version: Python 3.11\n"
2020
"Report-Msgid-Bugs-To: \n"
21-
"POT-Creation-Date: 2022-11-04 16:29+0000\n"
21+
"POT-Creation-Date: 2022-11-19 16:26+0000\n"
2222
"PO-Revision-Date: 2021-06-29 13:04+0000\n"
23-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2021\n"
23+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
2424
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
2525
"teams/5390/pt_BR/)\n"
2626
"MIME-Version: 1.0\n"
@@ -2954,7 +2954,7 @@ msgstr ""
29542954

29552955
#: ../../whatsnew/3.3.rst:2018
29562956
msgid "tempfile"
2957-
msgstr ""
2957+
msgstr "tempfile"
29582958

29592959
#: ../../whatsnew/3.3.rst:2020
29602960
msgid ""

whatsnew/3.5.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2317,7 +2317,7 @@ msgstr ""
23172317

23182318
#: ../../whatsnew/3.5.rst:1880
23192319
msgid "sysconfig"
2320-
msgstr ""
2320+
msgstr "sysconfig"
23212321

23222322
#: ../../whatsnew/3.5.rst:1882
23232323
msgid ""

0 commit comments

Comments
 (0)