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-16 16:48+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 : Cristián Maureira-Fredes <cmaureirafredes@gmail.com>\n "
22
+ "Language : es\n "
23
+ "X-Generator : Poedit 2.3\n "
22
24
23
25
#: ../Doc/c-api/complex.rst:6
24
26
msgid "Complex Number Objects"
25
- msgstr ""
27
+ msgstr "Objetos de números complejos "
26
28
27
29
#: ../Doc/c-api/complex.rst:10
28
30
msgid ""
@@ -31,17 +33,25 @@ msgid ""
31
33
"and the other is a C structure which represents the actual complex number "
32
34
"value. The API provides functions for working with both."
33
35
msgstr ""
36
+ "Los objetos de números complejos de Python se implementan como dos tipos "
37
+ "distintos cuando se ven desde la API de C: uno es el objeto de Python "
38
+ "expuesto a los programas de Python, y el otro es una estructura en C que "
39
+ "representa el valor de número complejo real. La API proporciona funciones "
40
+ "para trabajar con ambos."
34
41
35
42
#: ../Doc/c-api/complex.rst:17
36
43
msgid "Complex Numbers as C Structures"
37
- msgstr ""
44
+ msgstr "Números complejos como estructuras C "
38
45
39
46
#: ../Doc/c-api/complex.rst:19
40
47
msgid ""
41
48
"Note that the functions which accept these structures as parameters and "
42
49
"return them as results do so *by value* rather than dereferencing them "
43
50
"through pointers. This is consistent throughout the API."
44
51
msgstr ""
52
+ "Tenga en cuenta que las funciones que aceptan estas estructuras como "
53
+ "parámetros y las retornan como resultados lo hacen *por valor* en lugar de "
54
+ "desreferenciarlas a través de punteros. Esto es consistente en toda la API."
45
55
46
56
#: ../Doc/c-api/complex.rst:26
47
57
msgid ""
@@ -50,103 +60,134 @@ msgid ""
50
60
"objects use structures of this type as input or output values, as "
51
61
"appropriate. It is defined as::"
52
62
msgstr ""
63
+ "La estructura C que corresponde a la porción de valor de un objeto de número "
64
+ "complejo de Python. La mayoría de las funciones para tratar con objetos de "
65
+ "números complejos utilizan estructuras de este tipo como valores de entrada "
66
+ "o salida, según corresponda. Se define como::"
53
67
54
68
#: ../Doc/c-api/complex.rst:39
55
69
msgid ""
56
70
"Return the sum of two complex numbers, using the C :c:type:`Py_complex` "
57
71
"representation."
58
72
msgstr ""
73
+ "Retorna la suma de dos números complejos, utilizando la representación C :c:"
74
+ "type:`Py_complex`."
59
75
60
76
#: ../Doc/c-api/complex.rst:45
61
77
msgid ""
62
78
"Return the difference between two complex numbers, using the C :c:type:"
63
79
"`Py_complex` representation."
64
80
msgstr ""
81
+ "Retorna la diferencia entre dos números complejos, usando la representación "
82
+ "C :c:type:`Py_complex`."
65
83
66
84
#: ../Doc/c-api/complex.rst:51
67
85
msgid ""
68
86
"Return the negation of the complex number *complex*, using the C :c:type:"
69
87
"`Py_complex` representation."
70
88
msgstr ""
89
+ "Retorna la negación del número complejo *complex*, utilizando la "
90
+ "representación C :c:type:`Py_complex`."
71
91
72
92
#: ../Doc/c-api/complex.rst:57
73
93
msgid ""
74
94
"Return the product of two complex numbers, using the C :c:type:`Py_complex` "
75
95
"representation."
76
96
msgstr ""
97
+ "Retorna el producto de dos números complejos, usando la representación C :c:"
98
+ "type:`Py_complex`."
77
99
78
100
#: ../Doc/c-api/complex.rst:63
79
101
msgid ""
80
102
"Return the quotient of two complex numbers, using the C :c:type:`Py_complex` "
81
103
"representation."
82
104
msgstr ""
105
+ "Retorna el cociente de dos números complejos, utilizando la representación "
106
+ "C :c:type:`Py_complex`."
83
107
84
108
#: ../Doc/c-api/complex.rst:66
85
109
msgid ""
86
110
"If *divisor* is null, this method returns zero and sets :c:data:`errno` to :"
87
111
"c:data:`EDOM`."
88
112
msgstr ""
113
+ "Si *divisor* es nulo, este método retorna cero y establece :c:data:`errno` "
114
+ "en :c:data:`EDOM`."
89
115
90
116
#: ../Doc/c-api/complex.rst:72
91
117
msgid ""
92
118
"Return the exponentiation of *num* by *exp*, using the C :c:type:"
93
119
"`Py_complex` representation."
94
120
msgstr ""
121
+ "Retorna la exponenciación de *num* por *exp*, utilizando la representación "
122
+ "C :c:type:`Py_complex`."
95
123
96
124
#: ../Doc/c-api/complex.rst:75
97
125
msgid ""
98
126
"If *num* is null and *exp* is not a positive real number, this method "
99
127
"returns zero and sets :c:data:`errno` to :c:data:`EDOM`."
100
128
msgstr ""
129
+ "Si *num* es nulo y *exp* no es un número real positivo, este método retorna "
130
+ "cero y establece :c:data:`errno` a :c:data:`EDOM`."
101
131
102
132
#: ../Doc/c-api/complex.rst:80
103
133
msgid "Complex Numbers as Python Objects"
104
- msgstr ""
134
+ msgstr "Números complejos como objetos de Python "
105
135
106
136
#: ../Doc/c-api/complex.rst:85
107
137
msgid ""
108
138
"This subtype of :c:type:`PyObject` represents a Python complex number object."
109
139
msgstr ""
140
+ "Este subtipo de :c:type:`PyObject` representa un objeto de número complejo "
141
+ "de Python."
110
142
111
143
#: ../Doc/c-api/complex.rst:90
112
144
msgid ""
113
145
"This instance of :c:type:`PyTypeObject` represents the Python complex number "
114
146
"type. It is the same object as :class:`complex` in the Python layer."
115
147
msgstr ""
148
+ "Esta instancia de :c:type:`PyTypeObject` representa el tipo de número "
149
+ "complejo de Python. Es el mismo objeto que :class:`complex` en la capa de "
150
+ "Python."
116
151
117
152
#: ../Doc/c-api/complex.rst:96
118
153
msgid ""
119
154
"Return true if its argument is a :c:type:`PyComplexObject` or a subtype of :"
120
155
"c:type:`PyComplexObject`."
121
156
msgstr ""
157
+ "Retorna verdadero si su argumento es a :c:type:`PyComplexObject` o un "
158
+ "subtipo de :c:type:`PyComplexObject`."
122
159
123
160
#: ../Doc/c-api/complex.rst:102
124
161
msgid ""
125
162
"Return true if its argument is a :c:type:`PyComplexObject`, but not a "
126
163
"subtype of :c:type:`PyComplexObject`."
127
164
msgstr ""
165
+ "Retorna verdadero si su argumento es un :c:type:`PyComplexObject`, pero no "
166
+ "un subtipo de :c:type:`PyComplexObject`."
128
167
129
168
#: ../Doc/c-api/complex.rst:108
130
169
msgid ""
131
170
"Create a new Python complex number object from a C :c:type:`Py_complex` "
132
171
"value."
133
172
msgstr ""
173
+ "Crea un nuevo objeto de número complejo de Python a partir de un valor C :c:"
174
+ "type:`Py_complex`."
134
175
135
176
#: ../Doc/c-api/complex.rst:113
136
177
msgid "Return a new :c:type:`PyComplexObject` object from *real* and *imag*."
137
- msgstr ""
178
+ msgstr "Retorna un nuevo objeto :c:type:`PyComplexObject` de *real* e *imag*. "
138
179
139
180
#: ../Doc/c-api/complex.rst:118
140
181
msgid "Return the real part of *op* as a C :c:type:`double`."
141
- msgstr ""
182
+ msgstr "Retorna la parte real de *op* como :c:type:`double` en C. "
142
183
143
184
#: ../Doc/c-api/complex.rst:123
144
185
msgid "Return the imaginary part of *op* as a C :c:type:`double`."
145
- msgstr ""
186
+ msgstr "Retorna la parte imaginaria de *op* como un :c:type:`double` de C. "
146
187
147
188
#: ../Doc/c-api/complex.rst:128
148
189
msgid "Return the :c:type:`Py_complex` value of the complex number *op*."
149
- msgstr ""
190
+ msgstr "Retorna el valor :c:type:`Py_complex` del número complejo *op*. "
150
191
151
192
#: ../Doc/c-api/complex.rst:130
152
193
msgid ""
@@ -157,7 +198,13 @@ msgid ""
157
198
"meth:`__index__`. Upon failure, this method returns ``-1.0`` as a real "
158
199
"value."
159
200
msgstr ""
201
+ "Si *op* no es un objeto de número complejo de Python pero tiene un método :"
202
+ "meth:`__complex__`, primero se llamará a este método para convertir *op* en "
203
+ "un objeto de número complejo de Python. Si ``__complex__()`` no está "
204
+ "definido, vuelve a :meth:`__float__`. Si ``__float__()`` no está definido, "
205
+ "entonces recurre a :meth:`__index__`. En caso de falla, este método retorna "
206
+ "``-1.0`` como un valor real."
160
207
161
208
#: ../Doc/c-api/complex.rst:137
162
209
msgid "Use :meth:`__index__` if available."
163
- msgstr ""
210
+ msgstr "Use :meth:`__index__` si está disponible. "
0 commit comments