@@ -11,15 +11,16 @@ msgstr ""
1111"Project-Id-Version : Python 3.8\n "
1212"Report-Msgid-Bugs-To : \n "
1313"POT-Creation-Date : 2022-10-25 19:47+0200\n "
14- "PO-Revision-Date : 2021-08-18 09:42+0800 \n "
14+ "PO-Revision-Date : 2022-11-25 02:25-0500 \n "
1515"Last-Translator : Francisco Jesús Sevilla García <fjsevilla.dev@gmail.com>\n "
16- "Language : es_ES\n "
1716"Language-Team : python-doc-es\n "
18- "Plural-Forms : nplurals=2; plural=(n != 1); \n "
17+ "Language : es_ES \n "
1918"MIME-Version : 1.0\n "
2019"Content-Type : text/plain; charset=utf-8\n "
2120"Content-Transfer-Encoding : 8bit\n "
21+ "Plural-Forms : nplurals=2; plural=(n != 1);\n "
2222"Generated-By : Babel 2.10.3\n "
23+ "X-Generator : Poedit 3.0.1\n "
2324
2425#: ../Doc/library/math.rst:2
2526msgid ":mod:`math` --- Mathematical functions"
@@ -68,15 +69,14 @@ msgid "Number-theoretic and representation functions"
6869msgstr "Teoría de números y funciones de representación"
6970
7071#: ../Doc/library/math.rst:34
71- #, fuzzy
7272msgid ""
7373"Return the ceiling of *x*, the smallest integer greater than or equal to "
7474"*x*. If *x* is not a float, delegates to :meth:`x.__ceil__ <object."
7575"__ceil__>`, which should return an :class:`~numbers.Integral` value."
7676msgstr ""
7777"Retorna el \" techo\" de *x*, el número entero más pequeño que es mayor o "
78- "igual que *x*. Si *x* no es un flotante, delega en `` x.__ceil__()``, que "
79- "debería retornar un valor :class:`~numbers.Integral`."
78+ "igual que *x*. Si *x* no es un flotante, delega en :meth:` x.__ceil__ <object. "
79+ "__ceil__>`, que debería retornar un valor :class:`~numbers.Integral`."
8080
8181#: ../Doc/library/math.rst:41
8282msgid ""
@@ -95,14 +95,12 @@ msgstr ""
9595"``k > n``."
9696
9797#: ../Doc/library/math.rst:47
98- #, fuzzy
9998msgid ""
10099"Also called the binomial coefficient because it is equivalent to the "
101100"coefficient of k-th term in polynomial expansion of ``(1 + x)ⁿ``."
102101msgstr ""
103- "También se llama coeficiente binomial porque es equivalente al coeficiente "
104- "del k-ésimo término en el desarrollo polinomial de la expresión ``(1 + x) ** "
105- "n``."
102+ "También llamado coeficiente binomial porque es equivalente al coeficiente "
103+ "del k-ésimo término en la expansión polinomial de ``(1 + x)ⁿ``."
106104
107105#: ../Doc/library/math.rst:51 ../Doc/library/math.rst:260
108106msgid ""
@@ -128,28 +126,26 @@ msgid "Return the absolute value of *x*."
128126msgstr "Retorna el valor absoluto de *x*."
129127
130128#: ../Doc/library/math.rst:71
131- #, fuzzy
132129msgid ""
133130"Return *n* factorial as an integer. Raises :exc:`ValueError` if *n* is not "
134131"integral or is negative."
135132msgstr ""
136- "Retorna el factorial de *x * como un número entero. Lanza una excepción :exc:"
137- "`ValueError` si *x * no es un entero o es negativo."
133+ "Retorna el factorial de *n * como un número entero. Lanza una excepción :exc:"
134+ "`ValueError` si *n * no es un entero o negativo."
138135
139136#: ../Doc/library/math.rst:74
140137msgid "Accepting floats with integral values (like ``5.0``) is deprecated."
141138msgstr "Aceptar flotantes con valores integrales (como ``5.0``) está obsoleto."
142139
143140#: ../Doc/library/math.rst:80
144- #, fuzzy
145141msgid ""
146142"Return the floor of *x*, the largest integer less than or equal to *x*. If "
147143"*x* is not a float, delegates to :meth:`x.__floor__ <object.__floor__>`, "
148144"which should return an :class:`~numbers.Integral` value."
149145msgstr ""
150146"Retorna el \" suelo\" de *x*, el primer número entero mayor o igual que *x*. "
151- "Si *x* no es un flotante, delega en ``x .__floor__()``, que debería retornar "
152- "un valor :class:`~numbers.Integral`."
147+ "Si *x* no es un flotante, delega en :meth:`x.__floor__ <object .__floor__>`, "
148+ "que debería retornar un valor :class:`~numbers.Integral`."
153149
154150#: ../Doc/library/math.rst:87
155151#, python-format
@@ -511,6 +507,11 @@ msgid ""
511507"delegates to :meth:`x.__trunc__ <object.__trunc__>`, which should return an :"
512508"class:`~numbers.Integral` value."
513509msgstr ""
510+ "Retorna *x* con la parte fraccionaria eliminada, dejando la parte entera."
511+ "Esto redondea hacia 0: ``trunc()`` es equivalente a :func:`floor` para *x* "
512+ "positivo y equivalente a :func:`ceil` para *x* negativo. Si *x* no es un "
513+ "flotante, delega a :meth:`x.__trunc__ <object.__trunc__>`, que debería "
514+ "retornar un valor :class:`~numbers.Integral`."
514515
515516#: ../Doc/library/math.rst:309
516517msgid "Return the value of the least significant bit of the float *x*:"
@@ -602,9 +603,8 @@ msgid "Power and logarithmic functions"
602603msgstr "Funciones logarítmicas y exponenciales"
603604
604605#: ../Doc/library/math.rst:349
605- #, fuzzy
606606msgid "Return the cube root of *x*."
607- msgstr "Retorna la raíz cuadrada de *x*."
607+ msgstr "Retorna la raíz cúbica de *x*."
608608
609609#: ../Doc/library/math.rst:356
610610msgid ""
@@ -618,7 +618,7 @@ msgstr ""
618618
619619#: ../Doc/library/math.rst:363
620620msgid "Return *2* raised to the power *x*."
621- msgstr ""
621+ msgstr "Retorna *2* elevado a la potencia *x*. "
622622
623623#: ../Doc/library/math.rst:370
624624msgid ""
@@ -679,7 +679,6 @@ msgstr ""
679679"``log(x, 10)``."
680680
681681#: ../Doc/library/math.rst:420
682- #, fuzzy
683682msgid ""
684683"Return ``x`` raised to the power ``y``. Exceptional cases follow the IEEE "
685684"754 standard as far as possible. In particular, ``pow(1.0, x)`` and "
@@ -688,11 +687,11 @@ msgid ""
688687"integer then ``pow(x, y)`` is undefined, and raises :exc:`ValueError`."
689688msgstr ""
690689"Retorna ``x`` elevado a la potencia ``y``. Los casos excepcionales siguen el "
691- "Anexo 'F' del estándar C99 en la medida de lo posible. En particular, "
692- "``pow(1.0, x)`` y ``pow(x, 0.0)`` siempre retornan ``1.0``, incluso cuando "
693- "``x`` es cero o NaN. Si tanto ``x`` como ``y`` son finitos, ``x`` es "
694- "negativo e ``y`` no es un número entero, entonces ``pow(x, y)`` no está "
695- "definido y se lanza una excepción :exc:`ValueError`."
690+ "estándar IEEE 754 en la medida de lo posible. En particular, ``pow(1.0, x)`` "
691+ "y ``pow(x, 0.0)`` siempre retornan ``1.0``, incluso cuando ``x`` es cero o "
692+ "NaN. Si tanto ``x`` como ``y`` son finitos, ``x`` es negativo e ``y`` no es "
693+ "un número entero, entonces ``pow(x, y)`` no está definido y se lanza una "
694+ "excepción :exc:`ValueError`."
696695
697696#: ../Doc/library/math.rst:427
698697msgid ""
@@ -710,6 +709,9 @@ msgid ""
710709"return ``inf`` instead of raising :exc:`ValueError`, for consistency with "
711710"IEEE 754."
712711msgstr ""
712+ "Los casos especiales ``pow(0.0, -inf)`` y ``pow(-0.0, -inf)`` se cambiaron "
713+ "para devolver ``inf`` en lugar de generar :exc:`ValueError`, por "
714+ "consistencia con IEEE 754."
713715
714716#: ../Doc/library/math.rst:439
715717msgid "Return the square root of *x*."
@@ -886,16 +888,15 @@ msgstr ""
886888"Funci%C3%B3n_error>`_ en *x*."
887889
888890#: ../Doc/library/math.rst:579
889- #, fuzzy
890891msgid ""
891892"The :func:`erf` function can be used to compute traditional statistical "
892893"functions such as the `cumulative standard normal distribution <https://en."
893894"wikipedia.org/wiki/Normal_distribution#Cumulative_distribution_functions>`_::"
894895msgstr ""
895896"La función :func:`erf` se puede utilizar para calcular funciones "
896897"estadísticas tradicionales como la `distribución normal estándar acumulativa "
897- "<https://en .wikipedia.org/wiki/"
898- "Normal_distribution#Cumulative_distribution_function >`_::"
898+ "<https://es .wikipedia.org/wiki/"
899+ "Distribuci%C3%B3n_normal#Definici%C3%B3n_formal >`_::"
899900
900901#: ../Doc/library/math.rst:592
901902msgid ""
@@ -972,10 +973,16 @@ msgid ""
972973"check whether a number is a NaN, use the :func:`isnan` function to test for "
973974"NaNs instead of ``is`` or ``==``. Example::"
974975msgstr ""
976+ "Un valor de punto flotante \" no es un número\" (NaN). Equivalente a la "
977+ "salida de ``float('nan')``. Debido a los requisitos del `estándar IEEE-754 "
978+ "<https://es.wikipedia.org/wiki/IEEE_754>`_, ``math.nan`` y ``float('nan')`` "
979+ "no se consideran iguales a ningún otro valor numérico, incluidos ellos "
980+ "mismos. Para verificar si un número es NaN, use la función :func:`isnan` "
981+ "para probar NaN en lugar de ``is`` o ``==``. Ejemplo::"
975982
976983#: ../Doc/library/math.rst:669
977984msgid "It is now always available."
978- msgstr ""
985+ msgstr "Ahora está siempre disponible. "
979986
980987#: ../Doc/library/math.rst:677
981988msgid ""
0 commit comments