1111# i17obot <i17obot@rougeth.com>, 2021
1212# Rodrigo Cândido, 2022
1313# Jader Oliveira, 2022
14- # Rafael Fontenelle <rffontenelle@gmail.com>, 2023
14+ # Rafael Fontenelle <rffontenelle@gmail.com>, 2024
1515#
1616#, fuzzy
1717msgid ""
1818msgstr ""
1919"Project-Id-Version : Python 3.12\n "
2020"Report-Msgid-Bugs-To : \n "
21- "POT-Creation-Date : 2024-03-15 14:13 +0000\n "
21+ "POT-Creation-Date : 2024-03-22 14:14 +0000\n "
2222"PO-Revision-Date : 2021-06-28 01:09+0000\n "
23- "Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2023 \n "
23+ "Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2024 \n "
2424"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
2525"teams/5390/pt_BR/)\n "
2626"MIME-Version : 1.0\n "
@@ -202,6 +202,8 @@ msgid ""
202202"Return an accurate floating point sum of values in the iterable. Avoids "
203203"loss of precision by tracking multiple intermediate partial sums."
204204msgstr ""
205+ "Retorna uma soma de valores de ponto flutuante precisa no iterável. Evita "
206+ "perda de precisão rastreando várias somas parciais intermediárias."
205207
206208#: ../../library/math.rst:113
207209msgid ""
@@ -389,10 +391,12 @@ msgstr ""
389391#: ../../library/math.rst:229
390392msgid "Return the floating-point value *steps* steps after *x* towards *y*."
391393msgstr ""
394+ "Retorna o valor de ponto flutuante com *steps* passos após *x* em direção a "
395+ "*y*."
392396
393397#: ../../library/math.rst:231
394398msgid "If *x* is equal to *y*, return *y*, unless *steps* is zero."
395- msgstr ""
399+ msgstr "Se *x* for igual a *y*, retorna *y*, a menos que *steps* seja zero. "
396400
397401#: ../../library/math.rst:233
398402msgid "Examples:"
@@ -420,7 +424,7 @@ msgstr "Veja também :func:`math.ulp.`"
420424
421425#: ../../library/math.rst:244
422426msgid "Added the *steps* argument."
423- msgstr ""
427+ msgstr "Adicionado o argumento *steps*. "
424428
425429#: ../../library/math.rst:249
426430msgid ""
@@ -503,11 +507,12 @@ msgstr ""
503507
504508#: ../../library/math.rst:299
505509msgid "Return the sum of products of values from two iterables *p* and *q*."
506- msgstr ""
510+ msgstr "Retorna a soma dos produtos dos valores de dois iteráveis *p* e *q*. "
507511
508512#: ../../library/math.rst:301
509513msgid "Raises :exc:`ValueError` if the inputs do not have the same length."
510514msgstr ""
515+ "Levanta :exc:`ValueError` se as entradas não tiverem o mesmo comprimento."
511516
512517#: ../../library/math.rst:303 ../../library/math.rst:498
513518msgid "Roughly equivalent to::"
@@ -518,6 +523,8 @@ msgid ""
518523"For float and mixed int/float inputs, the intermediate products and sums are "
519524"computed with extended precision."
520525msgstr ""
526+ "Para entradas float e mistas int/float, os produtos intermediários e as "
527+ "somas são calculados com precisão estendida."
521528
522529#: ../../library/math.rst:315
523530msgid ""
@@ -650,6 +657,11 @@ msgid ""
650657"wiki/Loss_of_significance>`_\\ ; the :func:`expm1` function provides a way to "
651658"compute this quantity to full precision:"
652659msgstr ""
660+ "Retorna *e* elevado à potência *x*, menos 1. Aqui *e* é a base dos "
661+ "logaritmos naturais. Para pequenos pontos flutuantes *x*, a subtração em "
662+ "``exp(x) - 1`` pode resultar em uma `perda significativa de precisão "
663+ "<https://en.wikipedia.org/wiki/Loss_of_significance>`_\\ ; a função :func:"
664+ "`expm1` fornece uma maneira de calcular essa quantidade com precisão total:"
653665
654666#: ../../library/math.rst:401
655667msgid "With one argument, return the natural logarithm of *x* (to base *e*)."
@@ -858,6 +870,9 @@ msgid ""
858870"are analogs of trigonometric functions that are based on hyperbolas instead "
859871"of circles."
860872msgstr ""
873+ "`Funções hiperbólicas <https://en.wikipedia.org/wiki/Hyperbolic_functions>`_ "
874+ "são análogas às funções trigonométricas baseadas em hipérboles em vez de "
875+ "círculos."
861876
862877#: ../../library/math.rst:557
863878msgid "Return the inverse hyperbolic cosine of *x*."
@@ -900,6 +915,9 @@ msgid ""
900915"functions such as the `cumulative standard normal distribution <https://en."
901916"wikipedia.org/wiki/Cumulative_distribution_function>`_::"
902917msgstr ""
918+ "A função :func:`erf` pode ser usada para calcular funções estatísticas "
919+ "tradicionais, como a `distribuição normal padrão cumulativa <https://en."
920+ "wikipedia.org/wiki/Cumulative_distribution_function>`_::"
903921
904922#: ../../library/math.rst:606
905923msgid ""
@@ -972,6 +990,12 @@ msgid ""
972990"check whether a number is a NaN, use the :func:`isnan` function to test for "
973991"NaNs instead of ``is`` or ``==``. Example:"
974992msgstr ""
993+ "Um valor de ponto flutuante \" não é um número\" (NaN). Equivalente à saída "
994+ "de ``float('nan')``. Devido aos requisitos do `padrão IEEE-754 <https://en."
995+ "wikipedia.org/wiki/IEEE_754>`_, ``math.nan`` e ``float('nan')`` não são "
996+ "considerados para ser igual a qualquer outro valor numérico, incluindo eles "
997+ "próprios. Para verificar se um número é NaN, use a função :func:`isnan` para "
998+ "testar NaNs em vez de ``is`` ou ``==``. Exemplo:"
975999
9761000#: ../../library/math.rst:685
9771001msgid "It is now always available."
0 commit comments