6
6
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to
7
7
# get the list of volunteers
8
8
#
9
- #, fuzzy
10
9
msgid ""
11
10
msgstr ""
12
11
"Project-Id-Version :Python 3.8\n "
13
12
"Report-Msgid-Bugs-To :\n "
14
13
"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 "
17
15
"Language-Team :python-doc-es\n "
18
16
"MIME-Version :1.0\n "
19
- "Content-Type :text/plain; charset=utf -8\n "
17
+ "Content-Type :text/plain; charset=UTF -8\n "
20
18
"Content-Transfer-Encoding :8bit\n "
21
19
"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 "
22
24
23
25
#: ../Doc/c-api/float.rst:6
24
26
msgid "Floating Point Objects"
25
- msgstr ""
27
+ msgstr "Objetos de coma flotante "
26
28
27
29
#: ../Doc/c-api/float.rst:13
28
30
msgid ""
29
31
"This subtype of :c:type:`PyObject` represents a Python floating point object."
30
32
msgstr ""
33
+ "Este subtipo de :c:type:`PyObject` representa un objeto de coma flotante de "
34
+ "Python."
31
35
32
36
#: ../Doc/c-api/float.rst:18
33
37
msgid ""
34
38
"This instance of :c:type:`PyTypeObject` represents the Python floating point "
35
39
"type. This is the same object as :class:`float` in the Python layer."
36
40
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."
37
43
38
44
#: ../Doc/c-api/float.rst:24
39
45
msgid ""
40
46
"Return true if its argument is a :c:type:`PyFloatObject` or a subtype of :c:"
41
47
"type:`PyFloatObject`."
42
48
msgstr ""
49
+ "Retorna verdadero si su argumento es un :c:type:`PyFloatObject` o un subtipo "
50
+ "de :c:type:`PyFloatObject`."
43
51
44
52
#: ../Doc/c-api/float.rst:30
45
53
msgid ""
46
54
"Return true if its argument is a :c:type:`PyFloatObject`, but not a subtype "
47
55
"of :c:type:`PyFloatObject`."
48
56
msgstr ""
57
+ "Retorna verdadero si su argumento es un :c:type:`PyFloatObject`, pero no un "
58
+ "subtipo de :c:type:`PyFloatObject`."
49
59
50
60
#: ../Doc/c-api/float.rst:36
51
61
msgid ""
52
62
"Create a :c:type:`PyFloatObject` object based on the string value in *str*, "
53
63
"or ``NULL`` on failure."
54
64
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."
55
67
56
68
#: ../Doc/c-api/float.rst:42
57
69
msgid ""
58
70
"Create a :c:type:`PyFloatObject` object from *v*, or ``NULL`` on failure."
59
71
msgstr ""
72
+ "Crea un objeto :c:type:`PyFloatObject` a partir de *v*, o ``NULL`` en caso "
73
+ "de error."
60
74
61
75
#: ../Doc/c-api/float.rst:47
62
76
msgid ""
@@ -67,37 +81,55 @@ msgid ""
67
81
"This method returns ``-1.0`` upon failure, so one should call :c:func:"
68
82
"`PyErr_Occurred` to check for errors."
69
83
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."
70
91
71
92
#: ../Doc/c-api/float.rst:54
72
93
msgid "Use :meth:`__index__` if available."
73
- msgstr ""
94
+ msgstr "Utilice :meth:`__index__` si está disponible. "
74
95
75
96
#: ../Doc/c-api/float.rst:60
76
97
msgid ""
77
98
"Return a C :c:type:`double` representation of the contents of *pyfloat*, but "
78
99
"without error checking."
79
100
msgstr ""
101
+ "Retorna una representación C :c:type:`double` de los contenidos de "
102
+ "*pyfloat*, pero sin verificación de errores."
80
103
81
104
#: ../Doc/c-api/float.rst:66
82
105
msgid ""
83
106
"Return a structseq instance which contains information about the precision, "
84
107
"minimum and maximum values of a float. It's a thin wrapper around the header "
85
108
"file :file:`float.h`."
86
109
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`."
87
113
88
114
#: ../Doc/c-api/float.rst:73
89
115
msgid ""
90
116
"Return the maximum representable finite float *DBL_MAX* as C :c:type:"
91
117
"`double`."
92
118
msgstr ""
119
+ "Retorna el máximo flotante finito representable *DBL_MAX* como C :c:type:"
120
+ "`double`."
93
121
94
122
#: ../Doc/c-api/float.rst:78
95
123
msgid ""
96
124
"Return the minimum normalized positive float *DBL_MIN* as C :c:type:`double`."
97
125
msgstr ""
126
+ "Retorna el flotante positivo normalizado mínimo *DBL_MIN* como C :c:type:"
127
+ "`double`."
98
128
99
129
#: ../Doc/c-api/float.rst:82
100
130
msgid ""
101
131
"Clear the float free list. Return the number of items that could not be "
102
132
"freed."
103
133
msgstr ""
134
+ "Borra la lista libre de flotantes. Devuelve el número de artículos que no se "
135
+ "pudieron liberar."