Skip to content

Commit ea2fc8e

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 66bd310 commit ea2fc8e

File tree

10 files changed

+101
-33
lines changed

10 files changed

+101
-33
lines changed

library/functions.po

Lines changed: 66 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ msgid ""
2525
msgstr ""
2626
"Project-Id-Version: Python 3.12\n"
2727
"Report-Msgid-Bugs-To: \n"
28-
"POT-Creation-Date: 2023-07-29 02:08+0000\n"
28+
"POT-Creation-Date: 2023-08-04 14:13+0000\n"
2929
"PO-Revision-Date: 2021-06-28 01:06+0000\n"
3030
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
3131
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -501,6 +501,10 @@ msgid ""
501501
"object, it has to define an :meth:`~object.__index__` method that returns an "
502502
"integer. Some examples:"
503503
msgstr ""
504+
"Converte um número inteiro para uma string de binários prefixada com \"0b\". "
505+
"O resultado é uma expressão Python válida. Se *x* não é um objeto Python :"
506+
"class:`int`, ele tem que definir um método :meth:`~object.__index__` que "
507+
"devolve um inteiro. Alguns exemplos:"
504508

505509
#: ../../library/functions.rst:133
506510
msgid ""
@@ -524,6 +528,12 @@ msgid ""
524528
"It cannot be subclassed further. Its only instances are ``False`` and "
525529
"``True`` (see :ref:`typebool`)."
526530
msgstr ""
531+
"Retorna um valor Booleano, isto é, ``True`` ou ``False``. *x* é convertida "
532+
"usando o :ref:`procedimento de teste de verdade <truth>` padrão. Se *x* é "
533+
"falso ou foi omitido, isso retorna ``False``; senão ``True``. A classe :"
534+
"class:`bool` é uma subclasse de :class:`int` (veja :ref:`typesnumeric`). Ela "
535+
"não pode ser usada para criar outra subclasse. Suas únicas instâncias são "
536+
"``False`` e ``True`` (veja :ref:`typebool`)."
527537

528538
#: ../../library/functions.rst:154 ../../library/functions.rst:707
529539
#: ../../library/functions.rst:931
@@ -559,12 +569,17 @@ msgid ""
559569
"envvar:`PYTHONBREAKPOINT` environment variable. See :func:`sys."
560570
"breakpointhook` for usage details."
561571
msgstr ""
572+
"Por padrão, o comportamento de :func:`breakpoint` pode ser alterado com a "
573+
"variável de ambiente :envvar:`PYTHONBREAKPOINT`. Veja :func:`sys."
574+
"breakpointhook` para detalhes de uso."
562575

563576
#: ../../library/functions.rst:175
564577
msgid ""
565578
"Note that this is not guaranteed if :func:`sys.breakpointhook` has been "
566579
"replaced."
567580
msgstr ""
581+
"Observe que isso não é garantido se :func:`sys.breakpointhook` tiver sido "
582+
"substituído."
568583

569584
#: ../../library/functions.rst:178
570585
msgid ""
@@ -979,6 +994,11 @@ msgid ""
979994
"falls back to :meth:`~object.__float__`. If :meth:`!__float__` is not "
980995
"defined then it falls back to :meth:`~object.__index__`."
981996
msgstr ""
997+
"Para um objeto Python ``x`` qualquer, ``complex(x)`` delega para ``x."
998+
"__complex__()``. Se :meth:`~object.__complex__` não está definido então a "
999+
"chamada é repassada para :meth:`~object.__float__`. Se :meth:`!__float__` "
1000+
"não está definido então a chamada é, novamente, repassada para :meth:"
1001+
"`~object.__index__`."
9821002

9831003
#: ../../library/functions.rst:392
9841004
msgid ""
@@ -1006,6 +1026,8 @@ msgid ""
10061026
"Falls back to :meth:`~object.__index__` if :meth:`~object.__complex__` and :"
10071027
"meth:`~object.__float__` are not defined."
10081028
msgstr ""
1029+
"Chamadas para :meth:`~object.__index__` se :meth:`~object.__complex__` e :"
1030+
"meth:`~object.__float__` não estão definidas."
10091031

10101032
#: ../../library/functions.rst:409
10111033
msgid ""
@@ -1459,6 +1481,9 @@ msgid ""
14591481
"__float__()``. If :meth:`~object.__float__` is not defined then it falls "
14601482
"back to :meth:`~object.__index__`."
14611483
msgstr ""
1484+
"Para um objeto Python genérico ``x``, ``float(x)`` delega para o método ``x."
1485+
"__float__()``. Se :meth:`~object.__float__` não estiver definido, então ele "
1486+
"delega para o método :meth:`~object.__index__`."
14621487

14631488
#: ../../library/functions.rst:687
14641489
msgid "If no argument is given, ``0.0`` is returned."
@@ -1477,6 +1502,8 @@ msgid ""
14771502
"Falls back to :meth:`~object.__index__` if :meth:`~object.__float__` is not "
14781503
"defined."
14791504
msgstr ""
1505+
"Chamada para :meth:`~object.__index__` se :meth:`~object.__float__` não está "
1506+
"definido."
14801507

14811508
#: ../../library/functions.rst:720
14821509
msgid ""
@@ -1610,6 +1637,10 @@ msgid ""
16101637
"truncates the return value based on the bit width of the host machine. See :"
16111638
"meth:`__hash__ <object.__hash__>` for details."
16121639
msgstr ""
1640+
"Para objetos com métodos :meth:`__hash__` personalizados, fique atento que :"
1641+
"func:`hash` trunca o valor devolvido baseado no comprimento de bits da "
1642+
"máquina hospedeira. Veja :meth:`__hash__ <object.__hash__>` para mais "
1643+
"detalhes."
16131644

16141645
#: ../../library/functions.rst:802
16151646
msgid ""
@@ -1660,6 +1691,10 @@ msgid ""
16601691
"\"0x\". If *x* is not a Python :class:`int` object, it has to define an :"
16611692
"meth:`~object.__index__` method that returns an integer. Some examples:"
16621693
msgstr ""
1694+
"Converte um número inteiro para uma string hexadecimal em letras minúsculas "
1695+
"pré-fixada com \"0x\". Se *x* não é um objeto :class:`int` do Python, ele "
1696+
"tem que definir um método :meth:`~object.__index__` que retorne um inteiro. "
1697+
"Alguns exemplos:"
16631698

16641699
#: ../../library/functions.rst:832
16651700
msgid ""
@@ -1773,6 +1808,13 @@ msgid ""
17731808
"__trunc__`, it returns ``x.__trunc__()``. For floating point numbers, this "
17741809
"truncates towards zero."
17751810
msgstr ""
1811+
"Devolve um objeto inteiro construído a partir de um número ou string *x*, ou "
1812+
"devolve ``0`` se nenhum argumento foi fornecido. Se *x* definir um método :"
1813+
"meth:`~object.__int__`, então ``int(x)`` retorna ``x.__int__()``. Se *x* "
1814+
"definir um método :meth:`~object.__index__`, então ele retorna ``x."
1815+
"__index__()``. Se *x* definir um método :meth:`~object.__trunc__`, então ele "
1816+
"retorna ``x.__trunc__()``. Para números de ponto flutuante, isto trunca o "
1817+
"número na direção do zero."
17761818

17771819
#: ../../library/functions.rst:902
17781820
msgid ""
@@ -1835,10 +1877,12 @@ msgid ""
18351877
"Falls back to :meth:`~object.__index__` if :meth:`~object.__int__` is not "
18361878
"defined."
18371879
msgstr ""
1880+
"Chamada para :meth:`~object.__index__` se :meth:`~object.__int__` não está "
1881+
"definido."
18381882

18391883
#: ../../library/functions.rst:937
18401884
msgid "The delegation to :meth:`~object.__trunc__` is deprecated."
1841-
msgstr ""
1885+
msgstr "A delegação de :meth:`~object.__trunc__` foi descontinuada."
18421886

18431887
#: ../../library/functions.rst:940
18441888
msgid ""
@@ -2130,6 +2174,10 @@ msgid ""
21302174
"object, it has to define an :meth:`~object.__index__` method that returns an "
21312175
"integer. For example:"
21322176
msgstr ""
2177+
"Converte um número inteiro para uma string em base octal, pré-fixada com "
2178+
"\"0o\". O resultado é uma expressão Python válida. Se *x* não for um objeto :"
2179+
"class:`int` Python, ele tem que definir um método :meth:`~object.__index__` "
2180+
"que devolve um inteiro. Por exemplo:"
21332181

21342182
#: ../../library/functions.rst:1149
21352183
msgid ""
@@ -2323,6 +2371,11 @@ msgid ""
23232371
"size\" and falling back on :const:`io.DEFAULT_BUFFER_SIZE`. On many "
23242372
"systems, the buffer will typically be 4096 or 8192 bytes long."
23252373
msgstr ""
2374+
"Arquivos binários são armazenados em pedaços de tamanho fixo; o tamanho do "
2375+
"buffer é escolhido usando uma heurística que tenta determinar o \"tamanho de "
2376+
"bloco\" subjacente do dispositivo, e usa :const:`io.DEFAULT_BUFFER_SIZE` "
2377+
"caso não consiga. Em muitos sistemas, o buffer possuirá tipicamente 4096 ou "
2378+
"8192 bytes de comprimento."
23262379

23272380
#: ../../library/functions.rst:1237
23282381
msgid ""
@@ -3012,6 +3065,8 @@ msgid ""
30123065
"Slice objects are now :term:`hashable` (provided :attr:`~slice.start`, :attr:"
30133066
"`~slice.stop`, and :attr:`~slice.step` are hashable)."
30143067
msgstr ""
3068+
"Os objetos slice agora são :term:`hasheáveis <hasheável>` (desde que :attr:"
3069+
"`~slice.start`, :attr:`~slice.stop` e :attr:`~slice.step` sejam hasheáveis)."
30153070

30163071
#: ../../library/functions.rst:1652
30173072
msgid "Return a new sorted list from the items in *iterable*."
@@ -3206,6 +3261,8 @@ msgid ""
32063261
"Summation of floats switched to an algorithm that gives higher accuracy on "
32073262
"most builds."
32083263
msgstr ""
3264+
"A soma dos pontos flutuantes foi alterada para um algoritmo que oferece "
3265+
"maior precisão na maioria das compilações."
32093266

32103267
#: ../../library/functions.rst:1761
32113268
msgid ""
@@ -3814,27 +3871,27 @@ msgstr "novas linhas universais"
38143871

38153872
#: ../../library/functions.rst:1343
38163873
msgid "line-buffered I/O"
3817-
msgstr ""
3874+
msgstr "E/S com buffer de linha"
38183875

38193876
#: ../../library/functions.rst:1343
38203877
msgid "unbuffered I/O"
3821-
msgstr ""
3878+
msgstr "E/S sem buffer"
38223879

38233880
#: ../../library/functions.rst:1343
38243881
msgid "buffer size, I/O"
3825-
msgstr ""
3882+
msgstr "buffer, tamanho, E/S"
38263883

38273884
#: ../../library/functions.rst:1343
38283885
msgid "I/O control"
38293886
msgstr "controle de E/S"
38303887

38313888
#: ../../library/functions.rst:1343
38323889
msgid "buffering"
3833-
msgstr ""
3890+
msgstr "buffering"
38343891

38353892
#: ../../library/functions.rst:1343
38363893
msgid "text mode"
3837-
msgstr ""
3894+
msgstr "texto, modo"
38383895

38393896
#: ../../library/functions.rst:1343 ../../library/functions.rst:1995
38403897
msgid "module"
@@ -3846,7 +3903,7 @@ msgstr "sys"
38463903

38473904
#: ../../library/functions.rst:1725
38483905
msgid "str() (built-in function)"
3849-
msgstr ""
3906+
msgstr "str() (função embutida)"
38503907

38513908
#: ../../library/functions.rst:1840
38523909
msgid "object"
@@ -3858,7 +3915,7 @@ msgstr "instrução"
38583915

38593916
#: ../../library/functions.rst:1995
38603917
msgid "import"
3861-
msgstr ""
3918+
msgstr "importação"
38623919

38633920
#: ../../library/functions.rst:1995
38643921
msgid "builtins"

library/site.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.12\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2023-06-09 14:13+0000\n"
18+
"POT-Creation-Date: 2023-08-04 14:13+0000\n"
1919
"PO-Revision-Date: 2021-06-28 01:13+0000\n"
2020
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
2121
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -398,7 +398,7 @@ msgstr "instrução"
398398

399399
#: ../../library/site.rst:52
400400
msgid "import"
401-
msgstr ""
401+
msgstr "importação"
402402

403403
#: ../../library/site.rst:77
404404
msgid "package"

library/socket.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ msgid ""
2323
msgstr ""
2424
"Project-Id-Version: Python 3.12\n"
2525
"Report-Msgid-Bugs-To: \n"
26-
"POT-Creation-Date: 2023-07-29 02:08+0000\n"
26+
"POT-Creation-Date: 2023-08-04 14:13+0000\n"
2727
"PO-Revision-Date: 2021-06-28 01:13+0000\n"
2828
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
2929
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -2417,7 +2417,7 @@ msgstr "controle de E/S"
24172417

24182418
#: ../../library/socket.rst:1576
24192419
msgid "buffering"
2420-
msgstr ""
2420+
msgstr "buffering"
24212421

24222422
#: ../../library/socket.rst:1931
24232423
msgid "module"

library/stdtypes.po

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,10 @@ msgid ""
103103
"method that returns zero, when called with the object. [1]_ Here are most "
104104
"of the built-in objects considered false:"
105105
msgstr ""
106+
"Por padrão, um objeto é considerado verdadeiro, a menos que sua a classe "
107+
"defina um método :meth:`~object.__bool__` que retorne ``False`` ou um "
108+
"método :meth:`__len__` que retorna zero, quando chamado com o objeto. [1]_ "
109+
"Aqui estão a maioria dos objetos embutidos considerados falsos:"
106110

107111
#: ../../library/stdtypes.rst:55
108112
msgid "constants defined to be false: ``None`` and ``False``"

reference/datamodel.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5421,7 +5421,7 @@ msgstr "embutido"
54215421

54225422
#: ../../reference/datamodel.rst:736
54235423
msgid "import"
5424-
msgstr ""
5424+
msgstr "importação"
54255425

54265426
#: ../../reference/datamodel.rst:755
54275427
msgid "__name__ (module attribute)"

reference/expressions.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
# Alexandre B A Villares, 2023
1515
# Marco Rougeth <marco@rougeth.com>, 2023
1616
# Claudio Rogerio Carvalho Filho <excriptbrasil@gmail.com>, 2023
17-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
1817
# Adorilson Bezerra <adorilson@gmail.com>, 2023
18+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
1919
#
2020
#, fuzzy
2121
msgid ""
@@ -24,7 +24,7 @@ msgstr ""
2424
"Report-Msgid-Bugs-To: \n"
2525
"POT-Creation-Date: 2023-08-04 14:13+0000\n"
2626
"PO-Revision-Date: 2021-06-28 01:49+0000\n"
27-
"Last-Translator: Adorilson Bezerra <adorilson@gmail.com>, 2023\n"
27+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
2828
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
2929
"teams/5390/pt_BR/)\n"
3030
"MIME-Version: 1.0\n"
@@ -2536,7 +2536,7 @@ msgstr "expressão"
25362536

25372537
#: ../../reference/expressions.rst:8
25382538
msgid "BNF"
2539-
msgstr ""
2539+
msgstr "BNF"
25402540

25412541
#: ../../reference/expressions.rst:28 ../../reference/expressions.rst:1207
25422542
#: ../../reference/expressions.rst:1255

reference/import.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.12\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2023-05-26 14:12+0000\n"
19+
"POT-Creation-Date: 2023-08-04 14:13+0000\n"
2020
"PO-Revision-Date: 2021-06-28 01:49+0000\n"
2121
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
2222
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -1591,7 +1591,7 @@ msgstr ""
15911591

15921592
#: ../../reference/import.rst:249
15931593
msgid "import"
1594-
msgstr ""
1594+
msgstr "importação"
15951595

15961596
#: ../../reference/import.rst:249
15971597
msgid "meta"

reference/introduction.po

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
# Translators:
77
# Claudio Rogerio Carvalho Filho <excriptbrasil@gmail.com>, 2021
88
# Ruan Aragão <ruanaragao2@gmail.com>, 2021
9-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2022
9+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
1010
#
1111
#, fuzzy
1212
msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.12\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2023-06-09 14:13+0000\n"
16+
"POT-Creation-Date: 2023-08-04 14:13+0000\n"
1717
"PO-Revision-Date: 2021-06-28 01:49+0000\n"
18-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
18+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1919
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
2020
"teams/5390/pt_BR/)\n"
2121
"MIME-Version: 1.0\n"
@@ -195,6 +195,13 @@ msgid ""
195195
"information is available on `the PyPy project's home page <https://www.pypy."
196196
"org/>`_."
197197
msgstr ""
198+
"Uma implementação do Python escrita completamente em Python. A mesma suporta "
199+
"vários recursos avançados não encontrados em outras implementações, como "
200+
"suporte sem pilhas e um compilador Just in Time. Um dos objetivos do projeto "
201+
"é incentivar a construção de experimentos com a própria linguagem, "
202+
"facilitando a modificação do interpretador (uma vez que o mesmos está "
203+
"escrito em Python). Informações adicionais estão disponíveis no `site do "
204+
"projeto PyPy <https://www.pypy.org/>`_."
198205

199206
#: ../../reference/introduction.rst:79
200207
msgid ""
@@ -299,24 +306,24 @@ msgstr ""
299306

300307
#: ../../reference/introduction.rst:91
301308
msgid "BNF"
302-
msgstr ""
309+
msgstr "BNF"
303310

304311
#: ../../reference/introduction.rst:91
305312
msgid "grammar"
306-
msgstr ""
313+
msgstr "gramática"
307314

308315
#: ../../reference/introduction.rst:91
309316
msgid "syntax"
310-
msgstr ""
317+
msgstr "sintaxe"
311318

312319
#: ../../reference/introduction.rst:91
313320
msgid "notation"
314-
msgstr ""
321+
msgstr "notação"
315322

316323
#: ../../reference/introduction.rst:117
317324
msgid "lexical definitions"
318-
msgstr ""
325+
msgstr "léxicas, definições"
319326

320327
#: ../../reference/introduction.rst:117
321328
msgid "ASCII"
322-
msgstr ""
329+
msgstr "ASCII"

0 commit comments

Comments
 (0)