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
# docs-es@python.org / https://mail.python.org/mailman3/lists/docs-es.python.org/
5
5
# Check https://github.com/python/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-11-11 13:07-0500\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.2.1\n "
19
21
20
22
#: ../Doc/library/rlcompleter.rst:2
21
23
msgid ":mod:`rlcompleter` --- Completion function for GNU readline"
22
- msgstr ""
24
+ msgstr ":mod:`rlcompleter` --- Función de completado para GNU readline "
23
25
24
26
#: ../Doc/library/rlcompleter.rst:9
25
27
msgid "**Source code:** :source:`Lib/rlcompleter.py`"
26
- msgstr ""
28
+ msgstr "**Código fuente:** :source:`Lib/rlcompleter.py` "
27
29
28
30
#: ../Doc/library/rlcompleter.rst:13
29
31
msgid ""
30
32
"The :mod:`rlcompleter` module defines a completion function suitable for "
31
33
"the :mod:`readline` module by completing valid Python identifiers and "
32
34
"keywords."
33
35
msgstr ""
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."
34
39
35
40
#: ../Doc/library/rlcompleter.rst:16
36
41
msgid ""
@@ -39,10 +44,14 @@ msgid ""
39
44
"automatically created and its :meth:`complete` method is set as the :mod:"
40
45
"`readline` completer."
41
46
msgstr ""
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`."
42
51
43
52
#: ../Doc/library/rlcompleter.rst:20
44
53
msgid "Example::"
45
- msgstr ""
54
+ msgstr "Ejemplo:: "
46
55
47
56
#: ../Doc/library/rlcompleter.rst:31
48
57
msgid ""
@@ -51,31 +60,41 @@ msgid ""
51
60
"`-S` option, the module is automatically imported and configured (see :ref:"
52
61
"`rlcompleter-config`)."
53
62
msgstr ""
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`)."
54
67
55
68
#: ../Doc/library/rlcompleter.rst:36
56
69
msgid ""
57
70
"On platforms without :mod:`readline`, the :class:`Completer` class defined "
58
71
"by this module can still be used for custom purposes."
59
72
msgstr ""
73
+ "En plataformas sin :mod:`readline`, la clase :class:`Completer` definida por "
74
+ "este módulo puede ser usada igualmente para fines personalizados."
60
75
61
76
#: ../Doc/library/rlcompleter.rst:43
62
77
msgid "Completer Objects"
63
- msgstr ""
78
+ msgstr "Objetos de Completado "
64
79
65
80
#: ../Doc/library/rlcompleter.rst:45
66
81
msgid "Completer objects have the following method:"
67
- msgstr ""
82
+ msgstr "Los objetos de completado tienen el siguiente método: "
68
83
69
84
#: ../Doc/library/rlcompleter.rst:50
70
85
msgid "Return the *state*\\ th completion for *text*."
71
- msgstr ""
86
+ msgstr "Retorna el completado nº *state* para *text*. "
72
87
73
88
#: ../Doc/library/rlcompleter.rst:52
74
89
msgid ""
75
90
"If called for *text* that doesn't include a period character (``'.'``), it "
76
91
"will complete from names currently defined in :mod:`__main__`, :mod:"
77
92
"`builtins` and keywords (as defined by the :mod:`keyword` module)."
78
93
msgstr ""
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`)."
79
98
80
99
#: ../Doc/library/rlcompleter.rst:56
81
100
msgid ""
@@ -86,3 +105,9 @@ msgid ""
86
105
"evaluation of the expression is caught, silenced and :const:`None` is "
87
106
"returned."
88
107
msgstr ""
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