11# Copyright (C) 2001-2020, Python Software Foundation
22# 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.
44# docs-es@python.org / https://mail.python.org/mailman3/lists/docs-es.python.org/
55# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to get the list of volunteers
66#
7- #, fuzzy
87msgid ""
98msgstr ""
109"Project-Id-Version : Python 3.8\n "
1110"Report-Msgid-Bugs-To : \n "
1211"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 "
1513"Language-Team : python-doc-es\n "
1614"MIME-Version : 1.0\n "
1715"Content-Type : text/plain; charset=UTF-8\n "
1816"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 "
1921
2022#: ../Doc/library/operator.rst:2
23+ #, fuzzy
2124msgid ":mod:`operator` --- Standard operators as functions"
22- msgstr ""
25+ msgstr ":mod:`operator` --- Operadores estándar como funciones "
2326
2427#: ../Doc/library/operator.rst:9
28+ #, fuzzy
2529msgid "**Source code:** :source:`Lib/operator.py`"
26- msgstr ""
30+ msgstr "**Codigo fuente:** :source:`Lib/operator.py` "
2731
2832#: ../Doc/library/operator.rst:18
33+ #, fuzzy
2934msgid ""
3035"The :mod:`operator` module exports a set of efficient functions "
3136"corresponding to the intrinsic operators of Python. For example, ``operator."
@@ -35,20 +40,34 @@ msgid ""
3540"underscores kept. The variants without the double underscores are preferred "
3641"for clarity."
3742msgstr ""
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."
3850
3951#: ../Doc/library/operator.rst:25
52+ #, fuzzy
4053msgid ""
4154"The functions fall into categories that perform object comparisons, logical "
4255"operations, mathematical operations and sequence operations."
4356msgstr ""
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. "
4459
4560#: ../Doc/library/operator.rst:28
61+ #, fuzzy
4662msgid ""
4763"The object comparison functions are useful for all objects, and are named "
4864"after the rich comparison operators they support:"
4965msgstr ""
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:"
5068
5169#: ../Doc/library/operator.rst:45
70+ #, fuzzy
5271msgid ""
5372"Perform \" rich comparisons\" between *a* and *b*. Specifically, ``lt(a, b)`` "
5473"is equivalent to ``a < b``, ``le(a, b)`` is equivalent to ``a <= b``, "
@@ -58,46 +77,68 @@ msgid ""
5877"which may or may not be interpretable as a Boolean value. See :ref:"
5978"`comparisons` for more information about rich comparisons."
6079msgstr ""
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."
6188
6289#: ../Doc/library/operator.rst:54
90+ #, fuzzy
6391msgid ""
6492"The logical operations are also generally applicable to all objects, and "
6593"support truth tests, identity tests, and boolean operations:"
6694msgstr ""
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:"
6798
6899#: ../Doc/library/operator.rst:61
100+ #, fuzzy
69101msgid ""
70102"Return the outcome of :keyword:`not` *obj*. (Note that there is no :meth:"
71103"`__not__` method for object instances; only the interpreter core defines "
72104"this operation. The result is affected by the :meth:`__bool__` and :meth:"
73105"`__len__` methods.)"
74106msgstr ""
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__'.)"
75111
76112#: ../Doc/library/operator.rst:69
113+ #, fuzzy
77114msgid ""
78115"Return :const:`True` if *obj* is true, and :const:`False` otherwise. This "
79116"is equivalent to using the :class:`bool` constructor."
80117msgstr ""
118+ "Return :const:'True' si *obj* es true, y :const:'False' de lo contrario. "
119+ "Esto equivale a usar el constructor :class:'bool'."
81120
82121#: ../Doc/library/operator.rst:75
122+ #, fuzzy
83123msgid "Return ``a is b``. Tests object identity."
84- msgstr ""
124+ msgstr "Devuelve ''a es b''. Prueba la identidad del objeto. "
85125
86126#: ../Doc/library/operator.rst:80
127+ #, fuzzy
87128msgid "Return ``a is not b``. Tests object identity."
88- msgstr ""
129+ msgstr "Devuelve ''a no es b''. Prueba la identidad del objeto. "
89130
90131#: ../Doc/library/operator.rst:83
91132msgid "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: "
93134
94135#: ../Doc/library/operator.rst:89
95136msgid "Return the absolute value of *obj*."
96- msgstr ""
137+ msgstr "Retorna el valor absoluto de *obj*. "
97138
98139#: ../Doc/library/operator.rst:95
99140msgid "Return ``a + b``, for *a* and *b* numbers."
100- msgstr ""
141+ msgstr "Retorna ``a + b``, dados *a* y *b* números. "
101142
102143#: ../Doc/library/operator.rst:101
103144msgid "Return the bitwise and of *a* and *b*."
@@ -242,7 +283,7 @@ msgstr ""
242283#: ../Doc/library/operator.rst:270 ../Doc/library/operator.rst:302
243284#: ../Doc/library/operator.rst:351
244285msgid "Equivalent to::"
245- msgstr ""
286+ msgstr "Equivalente a:: "
246287
247288#: ../Doc/library/operator.rst:293
248289msgid ""
0 commit comments