Skip to content

Commit b250369

Browse files
committed
Traducido c-api/float
1 parent 5841933 commit b250369

File tree

1 file changed

+38
-6
lines changed

1 file changed

+38
-6
lines changed

c-api/float.po

Lines changed: 38 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,57 +6,71 @@
66
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to
77
# get the list of volunteers
88
#
9-
#, fuzzy
109
msgid ""
1110
msgstr ""
1211
"Project-Id-Version: Python 3.8\n"
1312
"Report-Msgid-Bugs-To: \n"
1413
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
15-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
16-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14+
"PO-Revision-Date: 2020-05-09 16:21+0200\n"
1715
"Language-Team: python-doc-es\n"
1816
"MIME-Version: 1.0\n"
19-
"Content-Type: text/plain; charset=utf-8\n"
17+
"Content-Type: text/plain; charset=UTF-8\n"
2018
"Content-Transfer-Encoding: 8bit\n"
2119
"Generated-By: Babel 2.8.0\n"
20+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
21+
"Last-Translator: \n"
22+
"Language: es\n"
23+
"X-Generator: Poedit 2.3\n"
2224

2325
#: ../Doc/c-api/float.rst:6
2426
msgid "Floating Point Objects"
25-
msgstr ""
27+
msgstr "Objetos de coma flotante"
2628

2729
#: ../Doc/c-api/float.rst:13
2830
msgid ""
2931
"This subtype of :c:type:`PyObject` represents a Python floating point object."
3032
msgstr ""
33+
"Este subtipo de :c:type:`PyObject` representa un objeto de coma flotante de "
34+
"Python."
3135

3236
#: ../Doc/c-api/float.rst:18
3337
msgid ""
3438
"This instance of :c:type:`PyTypeObject` represents the Python floating point "
3539
"type. This is the same object as :class:`float` in the Python layer."
3640
msgstr ""
41+
"Esta instancia de :c:type:`PyTypeObject` representa el tipo de coma flotante "
42+
"de Python. Este es el mismo objeto que :class:`float` en la capa de Python."
3743

3844
#: ../Doc/c-api/float.rst:24
3945
msgid ""
4046
"Return true if its argument is a :c:type:`PyFloatObject` or a subtype of :c:"
4147
"type:`PyFloatObject`."
4248
msgstr ""
49+
"Retorna verdadero si su argumento es un :c:type:`PyFloatObject` o un subtipo "
50+
"de :c:type:`PyFloatObject`."
4351

4452
#: ../Doc/c-api/float.rst:30
4553
msgid ""
4654
"Return true if its argument is a :c:type:`PyFloatObject`, but not a subtype "
4755
"of :c:type:`PyFloatObject`."
4856
msgstr ""
57+
"Retorna verdadero si su argumento es un :c:type:`PyFloatObject`, pero no un "
58+
"subtipo de :c:type:`PyFloatObject`."
4959

5060
#: ../Doc/c-api/float.rst:36
5161
msgid ""
5262
"Create a :c:type:`PyFloatObject` object based on the string value in *str*, "
5363
"or ``NULL`` on failure."
5464
msgstr ""
65+
"Crea un objeto :c:type:`PyFloatObject` en función del valor de cadena de "
66+
"caracteres en *str* o ``NULL`` en caso de error."
5567

5668
#: ../Doc/c-api/float.rst:42
5769
msgid ""
5870
"Create a :c:type:`PyFloatObject` object from *v*, or ``NULL`` on failure."
5971
msgstr ""
72+
"Crea un objeto :c:type:`PyFloatObject` a partir de *v*, o ``NULL`` en caso "
73+
"de error."
6074

6175
#: ../Doc/c-api/float.rst:47
6276
msgid ""
@@ -67,37 +81,55 @@ msgid ""
6781
"This method returns ``-1.0`` upon failure, so one should call :c:func:"
6882
"`PyErr_Occurred` to check for errors."
6983
msgstr ""
84+
"Retorna una representación C :c:type:`double` de los contenidos de "
85+
"*pyfloat*. Si *pyfloat* no es un objeto de coma flotante de Python pero "
86+
"tiene un método :meth:`__float__`, primero se llamará a este método para "
87+
"convertir *pyfloat* en un flotante. Si ``__float __()`` no está definido, "
88+
"entonces recurre a :meth:`__index__`. Este método devuelve ``-1.0`` en caso "
89+
"de falla, por lo que se debe llamar a :c:func:`PyErr_Occurred` para "
90+
"verificar si hay errores."
7091

7192
#: ../Doc/c-api/float.rst:54
7293
msgid "Use :meth:`__index__` if available."
73-
msgstr ""
94+
msgstr "Utilice :meth:`__index__` si está disponible."
7495

7596
#: ../Doc/c-api/float.rst:60
7697
msgid ""
7798
"Return a C :c:type:`double` representation of the contents of *pyfloat*, but "
7899
"without error checking."
79100
msgstr ""
101+
"Retorna una representación C :c:type:`double` de los contenidos de "
102+
"*pyfloat*, pero sin verificación de errores."
80103

81104
#: ../Doc/c-api/float.rst:66
82105
msgid ""
83106
"Return a structseq instance which contains information about the precision, "
84107
"minimum and maximum values of a float. It's a thin wrapper around the header "
85108
"file :file:`float.h`."
86109
msgstr ""
110+
"Retorna una instancia de *structseq* que contiene información sobre la "
111+
"precisión, los valores mínimos y máximos de un flotante. Es una envoltura "
112+
"delgada alrededor del archivo de encabezado :file:`float.h`."
87113

88114
#: ../Doc/c-api/float.rst:73
89115
msgid ""
90116
"Return the maximum representable finite float *DBL_MAX* as C :c:type:"
91117
"`double`."
92118
msgstr ""
119+
"Retorna el máximo flotante finito representable *DBL_MAX* como C :c:type:"
120+
"`double`."
93121

94122
#: ../Doc/c-api/float.rst:78
95123
msgid ""
96124
"Return the minimum normalized positive float *DBL_MIN* as C :c:type:`double`."
97125
msgstr ""
126+
"Retorna el flotante positivo normalizado mínimo *DBL_MIN* como C :c:type:"
127+
"`double`."
98128

99129
#: ../Doc/c-api/float.rst:82
100130
msgid ""
101131
"Clear the float free list. Return the number of items that could not be "
102132
"freed."
103133
msgstr ""
134+
"Borra la lista libre de flotantes. Devuelve el número de artículos que no se "
135+
"pudieron liberar."

0 commit comments

Comments
 (0)