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 punto 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 punto 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 punto "
42
+ "flotante de Python. Este es el mismo objeto que :class:`float` en la capa de "
43
+ "Python."
37
44
38
45
#: ../Doc/c-api/float.rst:24
39
46
msgid ""
40
47
"Return true if its argument is a :c:type:`PyFloatObject` or a subtype of :c:"
41
48
"type:`PyFloatObject`."
42
49
msgstr ""
50
+ "Retorna verdadero si su argumento es un :c:type:`PyFloatObject` o un subtipo "
51
+ "de :c:type:`PyFloatObject`."
43
52
44
53
#: ../Doc/c-api/float.rst:30
45
54
msgid ""
46
55
"Return true if its argument is a :c:type:`PyFloatObject`, but not a subtype "
47
56
"of :c:type:`PyFloatObject`."
48
57
msgstr ""
58
+ "Retorna verdadero si su argumento es un :c:type:`PyFloatObject`, pero no un "
59
+ "subtipo de :c:type:`PyFloatObject`."
49
60
50
61
#: ../Doc/c-api/float.rst:36
51
62
msgid ""
52
63
"Create a :c:type:`PyFloatObject` object based on the string value in *str*, "
53
64
"or ``NULL`` on failure."
54
65
msgstr ""
66
+ "Crea un objeto :c:type:`PyFloatObject` en función del valor de cadena de "
67
+ "caracteres en *str* o ``NULL`` en caso de error."
55
68
56
69
#: ../Doc/c-api/float.rst:42
57
70
msgid ""
58
71
"Create a :c:type:`PyFloatObject` object from *v*, or ``NULL`` on failure."
59
72
msgstr ""
73
+ "Crea un objeto :c:type:`PyFloatObject` a partir de *v*, o ``NULL`` en caso "
74
+ "de error."
60
75
61
76
#: ../Doc/c-api/float.rst:47
62
77
msgid ""
@@ -67,37 +82,55 @@ msgid ""
67
82
"This method returns ``-1.0`` upon failure, so one should call :c:func:"
68
83
"`PyErr_Occurred` to check for errors."
69
84
msgstr ""
85
+ "Retorna una representación C :c:type:`double` de los contenidos de "
86
+ "*pyfloat*. Si *pyfloat* no es un objeto de punto flotante de Python pero "
87
+ "tiene un método :meth:`__float__`, primero se llamará a este método para "
88
+ "convertir *pyfloat* en un flotante. Si ``__float __()`` no está definido, "
89
+ "entonces recurre a :meth:`__index__`. Este método devuelve ``-1.0`` en caso "
90
+ "de falla, por lo que se debe llamar a :c:func:`PyErr_Occurred` para "
91
+ "verificar si hay errores."
70
92
71
93
#: ../Doc/c-api/float.rst:54
72
94
msgid "Use :meth:`__index__` if available."
73
- msgstr ""
95
+ msgstr "Utilice :meth:`__index__` si está disponible. "
74
96
75
97
#: ../Doc/c-api/float.rst:60
76
98
msgid ""
77
99
"Return a C :c:type:`double` representation of the contents of *pyfloat*, but "
78
100
"without error checking."
79
101
msgstr ""
102
+ "Retorna una representación C :c:type:`double` de los contenidos de "
103
+ "*pyfloat*, pero sin verificación de errores."
80
104
81
105
#: ../Doc/c-api/float.rst:66
82
106
msgid ""
83
107
"Return a structseq instance which contains information about the precision, "
84
108
"minimum and maximum values of a float. It's a thin wrapper around the header "
85
109
"file :file:`float.h`."
86
110
msgstr ""
111
+ "Retorna una instancia de *structseq* que contiene información sobre la "
112
+ "precisión, los valores mínimos y máximos de un flotante. Es una envoltura "
113
+ "delgada alrededor del archivo de encabezado :file:`float.h`."
87
114
88
115
#: ../Doc/c-api/float.rst:73
89
116
msgid ""
90
117
"Return the maximum representable finite float *DBL_MAX* as C :c:type:"
91
118
"`double`."
92
119
msgstr ""
120
+ "Retorna el máximo flotante finito representable *DBL_MAX* como C :c:type:"
121
+ "`double`."
93
122
94
123
#: ../Doc/c-api/float.rst:78
95
124
msgid ""
96
125
"Return the minimum normalized positive float *DBL_MIN* as C :c:type:`double`."
97
126
msgstr ""
127
+ "Retorna el flotante positivo normalizado mínimo *DBL_MIN* como C :c:type:"
128
+ "`double`."
98
129
99
130
#: ../Doc/c-api/float.rst:82
100
131
msgid ""
101
132
"Clear the float free list. Return the number of items that could not be "
102
133
"freed."
103
134
msgstr ""
135
+ "Borra la lista libre de flotantes. Devuelve el número de artículos que no se "
136
+ "pudieron liberar."
0 commit comments