@@ -11,7 +11,7 @@ msgstr ""
11
11
"Project-Id-Version : Python 3.8\n "
12
12
"Report-Msgid-Bugs-To : \n "
13
13
"POT-Creation-Date : 2020-05-07 14:37+0200\n "
14
- "PO-Revision-Date : 2020-05-13 20:14 +0200\n "
14
+ "PO-Revision-Date : 2020-05-13 20:45 +0200\n "
15
15
"Last-Translator : \n "
16
16
"Language : es\n "
17
17
"Language-Team : python-doc-esMIME-Version: 1.0\n "
@@ -1047,8 +1047,12 @@ msgstr ""
1047
1047
#: ../Doc/library/functions.rst:574
1048
1048
msgid "Return a floating point number constructed from a number or string *x*."
1049
1049
msgstr ""
1050
+ "Devuelve un número de punto flotante construido a partir de un número o una "
1051
+ "cadena *x*."
1050
1052
1053
+ # no estoy segura de si debo traducir not-a-number
1051
1054
#: ../Doc/library/functions.rst:576
1055
+ #, fuzzy
1052
1056
msgid ""
1053
1057
"If the argument is a string, it should contain a decimal number, optionally "
1054
1058
"preceded by a sign, and optionally embedded in whitespace. The optional "
@@ -1058,14 +1062,29 @@ msgid ""
1058
1062
"conform to the following grammar after leading and trailing whitespace "
1059
1063
"characters are removed:"
1060
1064
msgstr ""
1065
+ "Si el argumento es una cadena, debe contener un número decimal, "
1066
+ "opcionalmente precedido de un signo, y opcionalmente entre espacios en "
1067
+ "blanco. El signo opcional puede ser ``’+’`` o ``’-‘``; un signo ``’+’`` no "
1068
+ "tiene efecto en el valor producido. El argumento puede ser también una "
1069
+ "cadena representando un NaN (no es un número), o un infinito positivo o "
1070
+ "negativo. Más concretamente, el argumento debe adecuarse a la siguiente "
1071
+ "gramática una vez eliminados de la cadena los caracteres en blanco por "
1072
+ "delante o detrás:"
1061
1073
1074
+ # case-sensitive es un termino muy sucinto en inglés yo he puesto como creo que se entiende
1062
1075
#: ../Doc/library/functions.rst:591
1076
+ #, fuzzy
1063
1077
msgid ""
1064
1078
"Here ``floatnumber`` is the form of a Python floating-point literal, "
1065
1079
"described in :ref:`floating`. Case is not significant, so, for example, "
1066
1080
"\" inf\" , \" Inf\" , \" INFINITY\" and \" iNfINity\" are all acceptable spellings "
1067
1081
"for positive infinity."
1068
1082
msgstr ""
1083
+ "Aquí ``floatnumber`` es el formato de un literal de punto flotante de "
1084
+ "Python, tal y como está descrito en :ref:`floating`. No es relevante si los "
1085
+ "caracteres son mayúsculas o minúsculas, de forma que “inf”, “Inf”, "
1086
+ "“INFINITY” e “iNfINity” son todas formas aceptables de escribir el infinito "
1087
+ "positivo."
1069
1088
1070
1089
#: ../Doc/library/functions.rst:596
1071
1090
msgid ""
@@ -1074,29 +1093,37 @@ msgid ""
1074
1093
"precision) is returned. If the argument is outside the range of a Python "
1075
1094
"float, an :exc:`OverflowError` will be raised."
1076
1095
msgstr ""
1096
+ "Sino, en caso de que el argumento sea un entero o un decimal de punto "
1097
+ "flotante, se devuelve un número de punto flotante del mismo valor (dentro de "
1098
+ "la precisión de punto flotante de Python). Si el argumento está fuera del "
1099
+ "rango de un punto flotante de Python, se generará una excepción :exc:"
1100
+ "`OverflowError` "
1077
1101
1078
1102
#: ../Doc/library/functions.rst:601
1079
1103
msgid ""
1080
1104
"For a general Python object ``x``, ``float(x)`` delegates to ``x."
1081
1105
"__float__()``. If ``__float__()`` is not defined then it falls back to :"
1082
1106
"meth:`__index__`."
1083
1107
msgstr ""
1108
+ "Para el objeto general de Python ``x``, ``float(x)`` delega a ``x."
1109
+ "__float__()``. Si ``__float__()`` no está definido entonces recurre a :meth:"
1110
+ "`__index__`."
1084
1111
1085
1112
#: ../Doc/library/functions.rst:605
1086
1113
msgid "If no argument is given, ``0.0`` is returned."
1087
- msgstr ""
1114
+ msgstr "Si no se le da un argumento, devuelve ``0.0``. "
1088
1115
1089
1116
#: ../Doc/library/functions.rst:607
1090
1117
msgid "Examples::"
1091
- msgstr ""
1118
+ msgstr "Ejemplos:: "
1092
1119
1093
1120
#: ../Doc/library/functions.rst:620
1094
1121
msgid "The float type is described in :ref:`typesnumeric`."
1095
- msgstr ""
1122
+ msgstr "El tipo float está descrito en :ref:`typesnumeric`. "
1096
1123
1097
1124
#: ../Doc/library/functions.rst:628
1098
1125
msgid "Falls back to :meth:`__index__` if :meth:`__float__` is not defined."
1099
- msgstr ""
1126
+ msgstr "Recurre a :meth:`__index__` si :meth:`__float__` no está definido. "
1100
1127
1101
1128
#: ../Doc/library/functions.rst:638
1102
1129
msgid ""
0 commit comments