6
6
# Check https://github.com/python/python-docs-es/blob/3.8/TRANSLATORS to
7
7
# get the list of volunteers
8
8
#
9
- #, fuzzy
10
9
msgid ""
11
10
msgstr ""
12
11
"Project-Id-Version : Python 3.8\n "
13
12
"Report-Msgid-Bugs-To : \n "
14
13
"POT-Creation-Date : 2020-05-05 12:54+0200\n "
15
- "PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
16
- "Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
14
+ "PO-Revision-Date : 2020-10-07 17:39-0400\n "
17
15
"Language-Team : python-doc-es\n "
18
16
"MIME-Version : 1.0\n "
19
- "Content-Type : text/plain; charset=utf -8\n "
17
+ "Content-Type : text/plain; charset=UTF -8\n "
20
18
"Content-Transfer-Encoding : 8bit\n "
21
19
"Generated-By : Babel 2.8.0\n "
20
+ "Plural-Forms : nplurals=2; plural=(n != 1);\n "
21
+ "Last-Translator : \n "
22
+ "Language : es\n "
23
+ "X-Generator : Poedit 2.3.1\n "
22
24
23
25
#: ../Doc/library/symtable.rst:2
24
26
msgid ":mod:`symtable` --- Access to the compiler's symbol tables"
25
- msgstr ""
27
+ msgstr ":mod:`symtable` --- Acceso a la tabla de símbolos del compilador "
26
28
27
29
#: ../Doc/library/symtable.rst:7
28
30
msgid "**Source code:** :source:`Lib/symtable.py`"
29
- msgstr ""
31
+ msgstr "**Código fuente:** :source:`Lib/symtable.py` "
30
32
31
33
#: ../Doc/library/symtable.rst:15
32
34
msgid ""
@@ -35,191 +37,235 @@ msgid ""
35
37
"every identifier in the code. :mod:`symtable` provides an interface to "
36
38
"examine these tables."
37
39
msgstr ""
40
+ "Las tablas de símbolos son generadas por el compilador a partir del AST "
41
+ "justo antes de que el bytecode sea generado. La tabla de símbolos es "
42
+ "responsable de calcular el ámbito de cada identificador en el código. :mod:"
43
+ "`symtable` provee una interfaz para examinar esas tablas."
38
44
39
45
#: ../Doc/library/symtable.rst:22
40
46
msgid "Generating Symbol Tables"
41
- msgstr ""
47
+ msgstr "Generando tablas de símbolos "
42
48
43
49
#: ../Doc/library/symtable.rst:26
44
50
msgid ""
45
51
"Return the toplevel :class:`SymbolTable` for the Python source *code*. "
46
52
"*filename* is the name of the file containing the code. *compile_type* is "
47
53
"like the *mode* argument to :func:`compile`."
48
54
msgstr ""
55
+ "Retorna la :class:`SymbolTable` del nivel más alto para el código Python "
56
+ "*code*. *filename* es el nombre del archivo conteniendo el código. "
57
+ "*compile_type* es como el argumento *mode* de la función :func:`compile`."
49
58
50
59
#: ../Doc/library/symtable.rst:32
51
60
msgid "Examining Symbol Tables"
52
- msgstr ""
61
+ msgstr "Examinando la tabla de símbolos "
53
62
54
63
#: ../Doc/library/symtable.rst:36
55
64
msgid "A namespace table for a block. The constructor is not public."
56
- msgstr ""
65
+ msgstr "Un espacio de nombres para el bloque. El constructor no es público. "
57
66
58
67
#: ../Doc/library/symtable.rst:40
59
68
msgid ""
60
69
"Return the type of the symbol table. Possible values are ``'class'``, "
61
70
"``'module'``, and ``'function'``."
62
71
msgstr ""
72
+ "Retorna el tipo de la tabla de símbolos. Los valores posibles son "
73
+ "``'class'``, ``'module'`` y ``'function'``."
63
74
64
75
#: ../Doc/library/symtable.rst:45
65
76
msgid "Return the table's identifier."
66
- msgstr ""
77
+ msgstr "Retorna el identificador de la tabla. "
67
78
68
79
#: ../Doc/library/symtable.rst:49
69
80
msgid ""
70
81
"Return the table's name. This is the name of the class if the table is for "
71
82
"a class, the name of the function if the table is for a function, or "
72
83
"``'top'`` if the table is global (:meth:`get_type` returns ``'module'``)."
73
84
msgstr ""
85
+ "Retorna el nombre de la tabla. Este es el nombre de la clase si la tabla es "
86
+ "para una clase, el nombre de la función si la tabla es para una función, o "
87
+ "``'top'`` si la tabla es global (:meth:`get_type` retorna ``'module'``)."
74
88
75
89
#: ../Doc/library/symtable.rst:55
76
90
msgid "Return the number of the first line in the block this table represents."
77
91
msgstr ""
92
+ "Retorna el numero de la primera línea en el bloque que esta tabla representa."
78
93
79
94
#: ../Doc/library/symtable.rst:59
80
95
msgid "Return ``True`` if the locals in this table can be optimized."
81
- msgstr ""
96
+ msgstr "Retorna ``True`` si los locales en esta tabla pueden ser optimizados. "
82
97
83
98
#: ../Doc/library/symtable.rst:63
84
99
msgid "Return ``True`` if the block is a nested class or function."
85
- msgstr ""
100
+ msgstr "Retorna ``True`` si el bloque es una clase o función anidadas. "
86
101
87
102
#: ../Doc/library/symtable.rst:67
88
103
msgid ""
89
104
"Return ``True`` if the block has nested namespaces within it. These can be "
90
105
"obtained with :meth:`get_children`."
91
106
msgstr ""
107
+ "Retorna ``True`` si el bloque contiene espacios de nombre anidados en él. "
108
+ "Estos pueden ser obtenidos con :meth:`get_children`."
92
109
93
110
#: ../Doc/library/symtable.rst:72
94
111
msgid "Return ``True`` if the block uses ``exec``."
95
- msgstr ""
112
+ msgstr "Retorna ``True`` si el bloque usa ``exec``. "
96
113
97
114
#: ../Doc/library/symtable.rst:76
98
115
msgid "Return a list of names of symbols in this table."
99
- msgstr ""
116
+ msgstr "Retorna una lista con los nombres de los símbolos en esta tabla. "
100
117
101
118
#: ../Doc/library/symtable.rst:80
102
119
msgid "Lookup *name* in the table and return a :class:`Symbol` instance."
103
- msgstr ""
120
+ msgstr "Busca *name* en la tabla y retorna una instancia de :class:`Symbol`. "
104
121
105
122
#: ../Doc/library/symtable.rst:84
106
123
msgid "Return a list of :class:`Symbol` instances for names in the table."
107
124
msgstr ""
125
+ "Retorna una lista de instancias de :class:`Symbol` de los nombres en la "
126
+ "tabla."
108
127
109
128
#: ../Doc/library/symtable.rst:88
110
129
msgid "Return a list of the nested symbol tables."
111
- msgstr ""
130
+ msgstr "Retorna una lista de las tablas de símbolos anidadas. "
112
131
113
132
#: ../Doc/library/symtable.rst:93
114
133
msgid ""
115
134
"A namespace for a function or method. This class inherits :class:"
116
135
"`SymbolTable`."
117
136
msgstr ""
137
+ "Un espacio de nombre para una función o método Esta clase hereda de :class:"
138
+ "`SymbolTable`."
118
139
119
140
#: ../Doc/library/symtable.rst:98
120
141
msgid "Return a tuple containing names of parameters to this function."
121
142
msgstr ""
143
+ "Retorna una tupla conteniendo los nombres de los parámetros de esta función."
122
144
123
145
#: ../Doc/library/symtable.rst:102
124
146
msgid "Return a tuple containing names of locals in this function."
125
147
msgstr ""
148
+ "Retorna una tupla conteniendo los nombres de los locales en esta función."
126
149
127
150
#: ../Doc/library/symtable.rst:106
128
151
msgid "Return a tuple containing names of globals in this function."
129
152
msgstr ""
153
+ "Retorna una tupla conteniendo los nombres de los globales en esta función."
130
154
131
155
#: ../Doc/library/symtable.rst:110
132
156
msgid "Return a tuple containing names of nonlocals in this function."
133
157
msgstr ""
158
+ "Retorna una tupla conteniendo los nombres de los no locales en esta función."
134
159
135
160
#: ../Doc/library/symtable.rst:114
136
161
msgid "Return a tuple containing names of free variables in this function."
137
162
msgstr ""
163
+ "Retorna una tupla conteniendo los nombres de las variables libres en esta "
164
+ "función."
138
165
139
166
#: ../Doc/library/symtable.rst:119
140
167
msgid "A namespace of a class. This class inherits :class:`SymbolTable`."
141
168
msgstr ""
169
+ "Un espacio de nombre de una clase. Esta clase hereda de :class:`SymbolTable`."
142
170
143
171
#: ../Doc/library/symtable.rst:123
144
172
msgid "Return a tuple containing the names of methods declared in the class."
145
173
msgstr ""
174
+ "Retorna una tupla conteniendo los nombres de los métodos declarados en la "
175
+ "clase."
146
176
147
177
#: ../Doc/library/symtable.rst:128
148
178
msgid ""
149
179
"An entry in a :class:`SymbolTable` corresponding to an identifier in the "
150
180
"source. The constructor is not public."
151
181
msgstr ""
182
+ "Una entrada en una :class:`SymbolTable` correspondiente a un identificador "
183
+ "en el código. El constructor no es publico."
152
184
153
185
#: ../Doc/library/symtable.rst:133
154
186
msgid "Return the symbol's name."
155
- msgstr ""
187
+ msgstr "Retorna el nombre del símbolo. "
156
188
157
189
#: ../Doc/library/symtable.rst:137
158
190
msgid "Return ``True`` if the symbol is used in its block."
159
- msgstr ""
191
+ msgstr "Retorna ``True`` si el símbolo es usado en su bloque. "
160
192
161
193
#: ../Doc/library/symtable.rst:141
162
194
msgid "Return ``True`` if the symbol is created from an import statement."
163
195
msgstr ""
196
+ "Retorna ``True`` si el símbolo es creado desde una instrucción *import*."
164
197
165
198
#: ../Doc/library/symtable.rst:145
166
199
msgid "Return ``True`` if the symbol is a parameter."
167
- msgstr ""
200
+ msgstr "Retorna ``True`` si el símbolo es un parámetro. "
168
201
169
202
#: ../Doc/library/symtable.rst:149
170
203
msgid "Return ``True`` if the symbol is global."
171
- msgstr ""
204
+ msgstr "Retorna ``True`` si el símbolo es global. "
172
205
173
206
#: ../Doc/library/symtable.rst:153
174
207
msgid "Return ``True`` if the symbol is nonlocal."
175
- msgstr ""
208
+ msgstr "Retorna ``True`` si el símbolo es no local. "
176
209
177
210
#: ../Doc/library/symtable.rst:157
178
211
msgid ""
179
212
"Return ``True`` if the symbol is declared global with a global statement."
180
213
msgstr ""
214
+ "Retorna ``True`` si el símbolo es declarado global con una instrucción "
215
+ "*global*."
181
216
182
217
#: ../Doc/library/symtable.rst:161
183
218
msgid "Return ``True`` if the symbol is local to its block."
184
- msgstr ""
219
+ msgstr "Retorna ``True`` si el símbolo es local a su bloque. "
185
220
186
221
#: ../Doc/library/symtable.rst:165
187
222
msgid ""
188
223
"Return ``True`` if the symbol is referenced in its block, but not assigned "
189
224
"to."
190
225
msgstr ""
226
+ "Retorna ``True`` si el símbolo es referenciado en su bloque pero no asignado."
191
227
192
228
#: ../Doc/library/symtable.rst:170
193
229
msgid "Return ``True`` if the symbol is assigned to in its block."
194
- msgstr ""
230
+ msgstr "Retorna ``True`` si el símbolo es asignado en su bloque. "
195
231
196
232
#: ../Doc/library/symtable.rst:174
197
233
msgid "Return ``True`` if name binding introduces new namespace."
198
234
msgstr ""
235
+ "Retorna ``True`` si la vinculación de nombres introduce un nuevo espacio de "
236
+ "nombres."
199
237
200
238
#: ../Doc/library/symtable.rst:176
201
239
msgid ""
202
240
"If the name is used as the target of a function or class statement, this "
203
241
"will be true."
204
242
msgstr ""
243
+ "Si el nombre es usado como objetivo de una instrucción *function* o *class* "
244
+ "devolverá verdadero."
205
245
206
246
#: ../Doc/library/symtable.rst:179
207
247
msgid "For example::"
208
- msgstr ""
248
+ msgstr "Por ejemplo:: "
209
249
210
250
#: ../Doc/library/symtable.rst:185
211
251
msgid ""
212
252
"Note that a single name can be bound to multiple objects. If the result is "
213
253
"``True``, the name may also be bound to other objects, like an int or list, "
214
254
"that does not introduce a new namespace."
215
255
msgstr ""
256
+ "Note que un solo nombre puede estar vinculado a multiples objetos. Si el "
257
+ "resultado es ``True``, el nombre puede estar vinculado también a otros "
258
+ "objetos, como un entero o una lista, esto no introduce un nuevo espacio de "
259
+ "nombres."
216
260
217
261
#: ../Doc/library/symtable.rst:191
218
262
msgid "Return a list of namespaces bound to this name."
219
- msgstr ""
263
+ msgstr "Retorna una lista de espacios de nombre vinculados a este nombre. "
220
264
221
265
#: ../Doc/library/symtable.rst:195
222
266
msgid ""
223
267
"Return the namespace bound to this name. If more than one namespace is "
224
268
"bound, :exc:`ValueError` is raised."
225
269
msgstr ""
270
+ "Retorna el espacio de nombre vinculado a este nombre. Si más de un espacio "
271
+ "de nombre esta vinculado se lanza un :exc:`ValueError`."
0 commit comments