@@ -26,8 +26,9 @@ msgstr ":mod:`numbers` --- Clase base abstracta numérica"
26
26
#: ../Doc/library/numbers.rst:7
27
27
msgid "**Source code:** :source:`Lib/numbers.py`"
28
28
msgstr "**Código fuente:** :source:`Lib/numbers.py`"
29
-
29
+ # revisar como usamos "abstract base classes" en el glosario
30
30
#: ../Doc/library/numbers.rst:11
31
+ #, fuzzy
31
32
msgid ""
32
33
"The :mod:`numbers` module (:pep:`3141`) defines a hierarchy of numeric :term:"
33
34
"`abstract base classes <abstract base class>` which progressively define "
@@ -53,9 +54,7 @@ msgstr ""
53
54
msgid "The numeric tower"
54
55
msgstr "La torre numérica"
55
56
56
- # Al hacer referencia a las funciones integradas con built-in no sabria si esta bien la traducción propuesta
57
57
#: ../Doc/library/numbers.rst:27
58
- #, fuzzy
59
58
msgid ""
60
59
"Subclasses of this type describe complex numbers and include the operations "
61
60
"that work on the built-in :class:`complex` type. These are: conversions to :"
@@ -65,17 +64,17 @@ msgid ""
65
64
msgstr ""
66
65
"Las subclases de este tipo describen números complejos e incluyen las "
67
66
"operaciones integradas del tipo :class:`complex`. Estas son: conversiones a :"
68
- "class:`complejos ` y :class:`booleanos `, :attr:`.reales `, :attr:`."
69
- "imaginarios `, ``+``, ``-``, ``*`, ``/``, 'func:`abs`, :meth:`conjugate`, "
67
+ "class:`complex ` y :class:`bool `, :attr:`.real `, :attr:`."
68
+ ".imag `, ``+``, ``-``, ``*`, ``/``, 'func:`abs`, :meth:`conjugate`, "
70
69
"``==``, y ``!=``. Todos excepto ``-`` y ``!=`` estos son abstractos."
71
70
72
71
#: ../Doc/library/numbers.rst:35
73
72
msgid "Abstract. Retrieves the real component of this number."
74
- msgstr "Abstracto. Recupera el componente real de el número."
73
+ msgstr "Abstracto. Recupera el componente real de este número."
75
74
76
75
#: ../Doc/library/numbers.rst:39
77
76
msgid "Abstract. Retrieves the imaginary component of this number."
78
- msgstr "Abstracto. Recupera el componente imaginario de el número."
77
+ msgstr "Abstracto. Recupera el componente imaginario de este número."
79
78
80
79
#: ../Doc/library/numbers.rst:43
81
80
msgid ""
@@ -111,15 +110,15 @@ msgstr ""
111
110
"*Real* también proporciona valores predeterminados para :func:`complex`, :"
112
111
"attr:`~Complex.real`, :attr:`~Complex.imag`, y :meth:`~Complex.conjugate`."
113
112
114
- # Se me hace super rara toda la cadea
113
+ # Se me hace super rara toda la cadena. Agrego "Subtypes" como "Hereda"
115
114
#: ../Doc/library/numbers.rst:61
116
115
#, fuzzy
117
116
msgid ""
118
117
"Subtypes :class:`Real` and adds :attr:`~Rational.numerator` and :attr:"
119
118
"`~Rational.denominator` properties, which should be in lowest terms. With "
120
119
"these, it provides a default for :func:`float`."
121
120
msgstr ""
122
- "Subtipos :class:`Real` y agregar propiedades :attr:`~Rational.numerator` y :"
121
+ "Hereda de :class:`Real` y agrega las propiedades :attr:`~Rational.numerator` y :"
123
122
"attr:`~Rational.denominator`, que deberían estar en los términos más bajos. "
124
123
"Con esto, se proporciona un valor predeterminado a :func:`float`."
125
124
@@ -134,7 +133,7 @@ msgid ""
134
133
"`~Rational.denominator`. Adds abstract methods for ``**`` and bit-string "
135
134
"operations: ``<<``, ``>>``, ``&``, ``^``, ``|``, ``~``."
136
135
msgstr ""
137
- "Subtipos :class:`Rational` y agregar conversión a :class:`int`. Proporciona "
136
+ "Hereda :class:`Rational` y agrega conversión a :class:`int`. Proporciona "
138
137
"valores predeterminados para :func:`float`, :attr:`~Rational.numerator`, y :"
139
138
"attr:`~Rational.denominator`. Agreda métodos abstractos para operaciones "
140
139
"``**`` y operaciones de cadena de bits: ``<<``, ``>>``, ``&``, ``^``, ``|``, "
@@ -160,7 +159,7 @@ msgstr ""
160
159
161
160
#: ../Doc/library/numbers.rst:105
162
161
msgid "Adding More Numeric ABCs"
163
- msgstr "Añadiendo *ABCs* numéricos"
162
+ msgstr "Agregar más *ABCs* numéricos"
164
163
165
164
#: ../Doc/library/numbers.rst:107
166
165
msgid ""
@@ -174,7 +173,7 @@ msgstr ""
174
173
175
174
#: ../Doc/library/numbers.rst:119
176
175
msgid "Implementing the arithmetic operations"
177
- msgstr "Implementando operaciones aritméticas"
176
+ msgstr "Implementar operaciones aritméticas"
178
177
179
178
#: ../Doc/library/numbers.rst:121
180
179
#, fuzzy
@@ -185,13 +184,9 @@ msgid ""
185
184
"there. For subtypes of :class:`Integral`, this means that :meth:`__add__` "
186
185
"and :meth:`__radd__` should be defined as::"
187
186
msgstr ""
188
- "We want to implement the arithmetic operations so that mixed-mode operations "
189
- "either call an implementation whose author knew about the types of both "
190
- "arguments, or convert both to the nearest built in type and do the operation "
191
- "there. For subtypes of :class:`Integral`, this means that :meth:`__add__` "
192
- "and :meth:`__radd__` should be defined as::"
193
-
187
+ # boilerplate -> repetitivo --revisar en todo el archivo
194
188
#: ../Doc/library/numbers.rst:152
189
+ #, fuzzy
195
190
msgid ""
196
191
"There are 5 different cases for a mixed-type operation on subclasses of :"
197
192
"class:`Complex`. I'll refer to all of the above code that doesn't refer to "
@@ -201,7 +196,7 @@ msgid ""
201
196
msgstr ""
202
197
"Hay 5 casos diferentes para una operación de tipo mixto en subclases de :"
203
198
"class:`Complex`. Me referiré a todo el código anterior que no se refiere a "
204
- "``MyIntegral`` y ``OtherTypeIKnowAbout` como `` repetitivo`` . ``a`` será una "
199
+ "``MyIntegral`` y ``OtherTypeIKnowAbout` como \" repetitivo\" . ``a`` será una "
205
200
"instancia de ``A``, que es un subtipo de :class:`Complex` (``a: A <: "
206
201
"Complex`), y ``b : B <: Complex``. Consideraré ``a + b``:"
207
202
0 commit comments