1
1
# Copyright (C) 2001-2020, Python Software Foundation
2
2
# This file is distributed under the same license as the Python package.
3
- # Maintained by the python-doc-es workteam.
3
+ # Maintained by the python-doc-es workteam.
4
4
# [email protected] / https://mail.python.org/mailman3/lists/docs-es.python.org/
5
5
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to get the list of volunteers
6
6
#
7
- #, fuzzy
8
7
msgid ""
9
8
msgstr ""
10
9
"Project-Id-Version : Python 3.8\n "
11
10
"Report-Msgid-Bugs-To : \n "
12
11
"POT-Creation-Date : 2019-05-06 11:59-0400\n "
13
- "PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
14
- "Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
12
+ "PO-Revision-Date : 2020-06-24 12:30-0300\n "
15
13
"Language-Team : python-doc-es\n "
16
14
"MIME-Version : 1.0\n "
17
15
"Content-Type : text/plain; charset=UTF-8\n "
18
16
"Content-Transfer-Encoding : 8bit\n "
17
+ "Plural-Forms : nplurals=2; plural=(n != 1);\n "
18
+ "Last-Translator : \n "
19
+ "Language : es\n "
20
+ "X-Generator : Poedit 2.3.1\n "
19
21
20
22
#: ../Doc/library/operator.rst:2
23
+ #, fuzzy
21
24
msgid ":mod:`operator` --- Standard operators as functions"
22
- msgstr ""
25
+ msgstr ":mod:`operator` --- Operadores estándar como funciones "
23
26
24
27
#: ../Doc/library/operator.rst:9
28
+ #, fuzzy
25
29
msgid "**Source code:** :source:`Lib/operator.py`"
26
- msgstr ""
30
+ msgstr "**Codigo fuente:** :source:`Lib/operator.py` "
27
31
28
32
#: ../Doc/library/operator.rst:18
33
+ #, fuzzy
29
34
msgid ""
30
35
"The :mod:`operator` module exports a set of efficient functions "
31
36
"corresponding to the intrinsic operators of Python. For example, ``operator."
@@ -35,20 +40,34 @@ msgid ""
35
40
"underscores kept. The variants without the double underscores are preferred "
36
41
"for clarity."
37
42
msgstr ""
43
+ "El módulo :mod:'operator' exporta un conjunto de funciones eficientes "
44
+ "correspondientes a los operadores intrínsecos de Python. Por ejemplo, "
45
+ "``operator.add(x, y)` es equivalente a la expresión ``x+y``. Muchos nombres "
46
+ "de función son los utilizados para métodos especiales, sin los dobles guion "
47
+ "bajo. Por compatibilidad con versiones anteriores, muchos de estos tienen "
48
+ "una variante que conserva los guiones bajos dobles. Se prefieren las "
49
+ "variantes sin los guiones bajos dobles para mayor claridad."
38
50
39
51
#: ../Doc/library/operator.rst:25
52
+ #, fuzzy
40
53
msgid ""
41
54
"The functions fall into categories that perform object comparisons, logical "
42
55
"operations, mathematical operations and sequence operations."
43
56
msgstr ""
57
+ "Las funciones se dividen en categorías que realizan comparación de objetos, "
58
+ "operaciones lógicas, operaciones matemáticas y operaciones sobre secuencias. "
44
59
45
60
#: ../Doc/library/operator.rst:28
61
+ #, fuzzy
46
62
msgid ""
47
63
"The object comparison functions are useful for all objects, and are named "
48
64
"after the rich comparison operators they support:"
49
65
msgstr ""
66
+ "Las funciones de comparación de objetos son útiles para todos los objetos, y "
67
+ "llevan el nombre de los operadores de comparación que soportan:"
50
68
51
69
#: ../Doc/library/operator.rst:45
70
+ #, fuzzy
52
71
msgid ""
53
72
"Perform \" rich comparisons\" between *a* and *b*. Specifically, ``lt(a, b)`` "
54
73
"is equivalent to ``a < b``, ``le(a, b)`` is equivalent to ``a <= b``, "
@@ -58,46 +77,68 @@ msgid ""
58
77
"which may or may not be interpretable as a Boolean value. See :ref:"
59
78
"`comparisons` for more information about rich comparisons."
60
79
msgstr ""
80
+ "Realice \" comparaciones ricas\" entre *a* y *b*. Específicamente, ''lt(a, "
81
+ "b)'' es equivalente a ''a <b'', ''le(a, b)'' es equivalente a ''a <''''', "
82
+ "''eq(a, b)'' es equivalente a ''a''b'', ''ne(a, b)'' es equivalente a ''a !' "
83
+ "b'', ''gt(a, b)'' es equivalente a ''a > b'' y ''ge(a, b)'' es equivalente a "
84
+ "''a>'b''. Tenga en cuenta que estas funciones pueden devolver cualquier "
85
+ "valor, que puede o no ser interpretable como un valor booleano. Consulte :"
86
+ "ref:'comparisons' para obtener más información sobre las comparaciones "
87
+ "enriquecidas."
61
88
62
89
#: ../Doc/library/operator.rst:54
90
+ #, fuzzy
63
91
msgid ""
64
92
"The logical operations are also generally applicable to all objects, and "
65
93
"support truth tests, identity tests, and boolean operations:"
66
94
msgstr ""
95
+ "Las operaciones lógicas también son generalmente aplicables a todos los "
96
+ "objetos y admiten pruebas de verdad, pruebas de identidad y operaciones "
97
+ "booleanas:"
67
98
68
99
#: ../Doc/library/operator.rst:61
100
+ #, fuzzy
69
101
msgid ""
70
102
"Return the outcome of :keyword:`not` *obj*. (Note that there is no :meth:"
71
103
"`__not__` method for object instances; only the interpreter core defines "
72
104
"this operation. The result is affected by the :meth:`__bool__` and :meth:"
73
105
"`__len__` methods.)"
74
106
msgstr ""
107
+ "Devuelve el resultado de :keyword:'not' *obj*. (Tenga en cuenta que no hay "
108
+ "ningún método :meth:'__not__' para las instancias de objeto; solo el núcleo "
109
+ "del intérprete define esta operación. El resultado se ve afectado por los "
110
+ "métodos :meth:'__bool__' y :meth:'__len__'.)"
75
111
76
112
#: ../Doc/library/operator.rst:69
113
+ #, fuzzy
77
114
msgid ""
78
115
"Return :const:`True` if *obj* is true, and :const:`False` otherwise. This "
79
116
"is equivalent to using the :class:`bool` constructor."
80
117
msgstr ""
118
+ "Return :const:'True' si *obj* es true, y :const:'False' de lo contrario. "
119
+ "Esto equivale a usar el constructor :class:'bool'."
81
120
82
121
#: ../Doc/library/operator.rst:75
122
+ #, fuzzy
83
123
msgid "Return ``a is b``. Tests object identity."
84
- msgstr ""
124
+ msgstr "Devuelve ''a es b''. Prueba la identidad del objeto. "
85
125
86
126
#: ../Doc/library/operator.rst:80
127
+ #, fuzzy
87
128
msgid "Return ``a is not b``. Tests object identity."
88
- msgstr ""
129
+ msgstr "Devuelve ''a no es b''. Prueba la identidad del objeto. "
89
130
90
131
#: ../Doc/library/operator.rst:83
91
132
msgid "The mathematical and bitwise operations are the most numerous:"
92
- msgstr ""
133
+ msgstr "Las operaciones matemáticas y a nivel de bits son las más numerosas: "
93
134
94
135
#: ../Doc/library/operator.rst:89
95
136
msgid "Return the absolute value of *obj*."
96
- msgstr ""
137
+ msgstr "Retorna el valor absoluto de *obj*. "
97
138
98
139
#: ../Doc/library/operator.rst:95
99
140
msgid "Return ``a + b``, for *a* and *b* numbers."
100
- msgstr ""
141
+ msgstr "Retorna ``a + b``, dados *a* y *b* números. "
101
142
102
143
#: ../Doc/library/operator.rst:101
103
144
msgid "Return the bitwise and of *a* and *b*."
@@ -242,7 +283,7 @@ msgstr ""
242
283
#: ../Doc/library/operator.rst:270 ../Doc/library/operator.rst:302
243
284
#: ../Doc/library/operator.rst:351
244
285
msgid "Equivalent to::"
245
- msgstr ""
286
+ msgstr "Equivalente a:: "
246
287
247
288
#: ../Doc/library/operator.rst:293
248
289
msgid ""
0 commit comments