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/python/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-11-11 13:07-0500\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.2.1\n "
1921
2022#: ../Doc/library/rlcompleter.rst:2
2123msgid ":mod:`rlcompleter` --- Completion function for GNU readline"
22- msgstr ""
24+ msgstr ":mod:`rlcompleter` --- Función de completado para GNU readline "
2325
2426#: ../Doc/library/rlcompleter.rst:9
2527msgid "**Source code:** :source:`Lib/rlcompleter.py`"
26- msgstr ""
28+ msgstr "**Código fuente:** :source:`Lib/rlcompleter.py` "
2729
2830#: ../Doc/library/rlcompleter.rst:13
2931msgid ""
3032"The :mod:`rlcompleter` module defines a completion function suitable for "
3133"the :mod:`readline` module by completing valid Python identifiers and "
3234"keywords."
3335msgstr ""
36+ "El módulo :mod:`rlcompleter` define una función de completado adecuada para "
37+ "el módulo :mod:`readline` completando los identificadores y las palabras "
38+ "clave de Python válidas."
3439
3540#: ../Doc/library/rlcompleter.rst:16
3641msgid ""
@@ -39,10 +44,14 @@ msgid ""
3944"automatically created and its :meth:`complete` method is set as the :mod:"
4045"`readline` completer."
4146msgstr ""
47+ "Cuando este módulo es importado en una plataforma Unix con el módulo :mod:"
48+ "`readline` disponible, una instancia de la clase :class:`Completer` es "
49+ "automáticamente creada y su método :meth:`complete` es fijado como el método "
50+ "de completado de :mod:`readline`."
4251
4352#: ../Doc/library/rlcompleter.rst:20
4453msgid "Example::"
45- msgstr ""
54+ msgstr "Ejemplo:: "
4655
4756#: ../Doc/library/rlcompleter.rst:31
4857msgid ""
@@ -51,31 +60,41 @@ msgid ""
5160"`-S` option, the module is automatically imported and configured (see :ref:"
5261"`rlcompleter-config`)."
5362msgstr ""
63+ "El módulo :mod:`rlcompleter` está diseñado para usarse con el :ref:`modo "
64+ "interactivo <tut-interactive>` de Python. A menos que Python sea ejecutado "
65+ "con la opción :option:`-S`, el módulo es automáticamente importado y "
66+ "configurado (ver :ref:`rlcompleter-config`)."
5467
5568#: ../Doc/library/rlcompleter.rst:36
5669msgid ""
5770"On platforms without :mod:`readline`, the :class:`Completer` class defined "
5871"by this module can still be used for custom purposes."
5972msgstr ""
73+ "En plataformas sin :mod:`readline`, la clase :class:`Completer` definida por "
74+ "este módulo puede ser usada igualmente para fines personalizados."
6075
6176#: ../Doc/library/rlcompleter.rst:43
6277msgid "Completer Objects"
63- msgstr ""
78+ msgstr "Objetos de Completado "
6479
6580#: ../Doc/library/rlcompleter.rst:45
6681msgid "Completer objects have the following method:"
67- msgstr ""
82+ msgstr "Los objetos de completado tienen el siguiente método: "
6883
6984#: ../Doc/library/rlcompleter.rst:50
7085msgid "Return the *state*\\ th completion for *text*."
71- msgstr ""
86+ msgstr "Retorna el completado nº *state* para *text*. "
7287
7388#: ../Doc/library/rlcompleter.rst:52
7489msgid ""
7590"If called for *text* that doesn't include a period character (``'.'``), it "
7691"will complete from names currently defined in :mod:`__main__`, :mod:"
7792"`builtins` and keywords (as defined by the :mod:`keyword` module)."
7893msgstr ""
94+ "Si es invocado para *text* que no incluye un caracter de punto (``'.'``), "
95+ "este completará con nombres actualmente definidos en :mod:`__main__`, :mod:"
96+ "`builtins` y las palabras clave (tal y como están definidas en el módulo :"
97+ "mod:`keyword`)."
7998
8099#: ../Doc/library/rlcompleter.rst:56
81100msgid ""
@@ -86,3 +105,9 @@ msgid ""
86105"evaluation of the expression is caught, silenced and :const:`None` is "
87106"returned."
88107msgstr ""
108+ "Si es invocado para un nombre con punto, este tratará de evaluar cualquier "
109+ "cosa sin efectos secundarios obvios (las funciones no serán evaluadas, pero "
110+ "puede generar invocaciones a :meth:`__getattr__`) hasta la última parte, y "
111+ "encontrar coincidencias para el resto mediante la función :func:`dir`, "
112+ "Cualquier excepción ocurrida durante la evaluación de la expresión es "
113+ "cazada, silenciada y se retorna :const:`None`."
0 commit comments