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-05 17:28+0200\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.4.1\n "
22
24
23
25
#: ../Doc/library/token.rst:2
24
26
msgid ":mod:`token` --- Constants used with Python parse trees"
25
- msgstr ""
27
+ msgstr ":mod:`token`--- Constantes usadas con árboles de sintaxis de Python "
26
28
27
29
#: ../Doc/library/token.rst:9
28
30
msgid "**Source code:** :source:`Lib/token.py`"
29
- msgstr ""
31
+ msgstr "**Código fuente:** :source:`Lib/token.py` "
30
32
31
33
#: ../Doc/library/token.rst:13
32
34
msgid ""
@@ -36,233 +38,247 @@ msgid ""
36
38
"context of the language grammar. The specific numeric values which the "
37
39
"names map to may change between Python versions."
38
40
msgstr ""
41
+ "Este módulo provee constantes que representan los valores numéricos de nodos "
42
+ "hoja de un árbol de sintaxis (tokens terminales). Referirse al archivo :file:"
43
+ "`Grammar/Grammar` en la distribución de Python para las definiciones de los "
44
+ "nombres en el contexto de gramática del lenguaje. Los valores numéricos "
45
+ "específicos a los que los nombres mapean pueden cambiar entre versiones de "
46
+ "Python."
39
47
40
48
#: ../Doc/library/token.rst:19
41
49
msgid ""
42
50
"The module also provides a mapping from numeric codes to names and some "
43
51
"functions. The functions mirror definitions in the Python C header files."
44
52
msgstr ""
53
+ "El módulo también proporciona un mapeo de códigos numéricos a nombres y "
54
+ "algunas funciones. Las funciones asemejan definiciones en los archivos "
55
+ "Python C encabezados."
45
56
46
57
#: ../Doc/library/token.rst:25
47
58
msgid ""
48
59
"Dictionary mapping the numeric values of the constants defined in this "
49
60
"module back to name strings, allowing more human-readable representation of "
50
61
"parse trees to be generated."
51
62
msgstr ""
63
+ "Diccionario que mapea los valores numéricos de las constantes definidas en "
64
+ "este módulo a cadenas de nombres, permitiendo una representación de árboles "
65
+ "de sintaxis a ser generados más legible para humanos."
52
66
53
67
#: ../Doc/library/token.rst:32
54
68
msgid "Return ``True`` for terminal token values."
55
- msgstr ""
69
+ msgstr "Retorna ``True`` para valores token terminales. "
56
70
57
71
#: ../Doc/library/token.rst:37
58
72
msgid "Return ``True`` for non-terminal token values."
59
- msgstr ""
73
+ msgstr "Retorna ``True`` para valores token no terminales. "
60
74
61
75
#: ../Doc/library/token.rst:42
62
76
msgid "Return ``True`` if *x* is the marker indicating the end of input."
63
- msgstr ""
77
+ msgstr "Retorna ``True`` si *x* es el marcador indicando el final del input. "
64
78
65
79
#: ../Doc/library/token.rst:45
66
80
msgid "The token constants are:"
67
- msgstr ""
81
+ msgstr "Las constantes de token son: "
68
82
69
83
#: ../Doc/library/token-list.inc:18
70
84
msgid "Token value for ``\" (\" ``."
71
- msgstr ""
85
+ msgstr "Valor token para `` \" ( \" ``. "
72
86
73
87
#: ../Doc/library/token-list.inc:22
74
88
msgid "Token value for ``\" )\" ``."
75
- msgstr ""
89
+ msgstr "Valor token para `` \" ) \" ``. "
76
90
77
91
#: ../Doc/library/token-list.inc:26
78
92
msgid "Token value for ``\" [\" ``."
79
- msgstr ""
93
+ msgstr "Valor token para `` \" [ \" ``. "
80
94
81
95
#: ../Doc/library/token-list.inc:30
82
96
msgid "Token value for ``\" ]\" ``."
83
- msgstr ""
97
+ msgstr "Valor token para `` \" ] \" ``. "
84
98
85
99
#: ../Doc/library/token-list.inc:34
86
100
msgid "Token value for ``\" :\" ``."
87
- msgstr ""
101
+ msgstr "Valor token para `` \" : \" ``. "
88
102
89
103
#: ../Doc/library/token-list.inc:38
90
104
msgid "Token value for ``\" ,\" ``."
91
- msgstr ""
105
+ msgstr "Valor token para `` \" , \" ``. "
92
106
93
107
#: ../Doc/library/token-list.inc:42
94
108
msgid "Token value for ``\" ;\" ``."
95
- msgstr ""
109
+ msgstr "Valor token para `` \" ; \" ``. "
96
110
97
111
#: ../Doc/library/token-list.inc:46
98
112
msgid "Token value for ``\" +\" ``."
99
- msgstr ""
113
+ msgstr "Valor token para `` \" + \" ``. "
100
114
101
115
#: ../Doc/library/token-list.inc:50
102
116
msgid "Token value for ``\" -\" ``."
103
- msgstr ""
117
+ msgstr "Valor token para `` \" - \" ``. "
104
118
105
119
#: ../Doc/library/token-list.inc:54
106
120
msgid "Token value for ``\" *\" ``."
107
- msgstr ""
121
+ msgstr "Valor token para `` \" * \" ``. "
108
122
109
123
#: ../Doc/library/token-list.inc:58
110
124
msgid "Token value for ``\" /\" ``."
111
- msgstr ""
125
+ msgstr "Valor token para `` \" / \" ``. "
112
126
113
127
#: ../Doc/library/token-list.inc:62
114
128
msgid "Token value for ``\" |\" ``."
115
- msgstr ""
129
+ msgstr "Valor token para `` \" | \" ``. "
116
130
117
131
#: ../Doc/library/token-list.inc:66
118
132
msgid "Token value for ``\" &\" ``."
119
- msgstr ""
133
+ msgstr "Valor token para `` \" & \" ``. "
120
134
121
135
#: ../Doc/library/token-list.inc:70
122
136
msgid "Token value for ``\" <\" ``."
123
- msgstr ""
137
+ msgstr "Valor token para `` \" < \" ``. "
124
138
125
139
#: ../Doc/library/token-list.inc:74
126
140
msgid "Token value for ``\" >\" ``."
127
- msgstr ""
141
+ msgstr "Valor token para `` \" > \" ``. "
128
142
129
143
#: ../Doc/library/token-list.inc:78
130
144
msgid "Token value for ``\" =\" ``."
131
- msgstr ""
145
+ msgstr "Valor token para `` \" = \" ``. "
132
146
133
147
#: ../Doc/library/token-list.inc:82
134
148
msgid "Token value for ``\" .\" ``."
135
- msgstr ""
149
+ msgstr "Valor token para `` \" . \" ``. "
136
150
137
151
#: ../Doc/library/token-list.inc:86
138
152
msgid "Token value for ``\" %\" ``."
139
- msgstr ""
153
+ msgstr "Valor token para `` \" % \" ``. "
140
154
141
155
#: ../Doc/library/token-list.inc:90
142
156
msgid "Token value for ``\" {\" ``."
143
- msgstr ""
157
+ msgstr "Valor token para `` \" { \" ``. "
144
158
145
159
#: ../Doc/library/token-list.inc:94
146
160
msgid "Token value for ``\" }\" ``."
147
- msgstr ""
161
+ msgstr "Valor token para `` \" } \" ``. "
148
162
149
163
#: ../Doc/library/token-list.inc:98
150
164
msgid "Token value for ``\" ==\" ``."
151
- msgstr ""
165
+ msgstr "Valor token para `` \" == \" ``. "
152
166
153
167
#: ../Doc/library/token-list.inc:102
154
168
msgid "Token value for ``\" !=\" ``."
155
- msgstr ""
169
+ msgstr "Valor token para `` \" != \" ``. "
156
170
157
171
#: ../Doc/library/token-list.inc:106
158
172
msgid "Token value for ``\" <=\" ``."
159
- msgstr ""
173
+ msgstr "Valor token para `` \" <= \" ``. "
160
174
161
175
#: ../Doc/library/token-list.inc:110
162
176
msgid "Token value for ``\" >=\" ``."
163
- msgstr ""
177
+ msgstr "Valor token para `` \" >= \" ``. "
164
178
165
179
#: ../Doc/library/token-list.inc:114
166
180
msgid "Token value for ``\" ~\" ``."
167
- msgstr ""
181
+ msgstr "Valor token para `` \" ~ \" ``. "
168
182
169
183
#: ../Doc/library/token-list.inc:118
170
184
msgid "Token value for ``\" ^\" ``."
171
- msgstr ""
185
+ msgstr "Valor token para `` \" ^ \" ``. "
172
186
173
187
#: ../Doc/library/token-list.inc:122
174
188
msgid "Token value for ``\" <<\" ``."
175
- msgstr ""
189
+ msgstr "Valor token para `` \" << \" ``. "
176
190
177
191
#: ../Doc/library/token-list.inc:126
178
192
msgid "Token value for ``\" >>\" ``."
179
- msgstr ""
193
+ msgstr "Valor token para `` \" >> \" ``. "
180
194
181
195
#: ../Doc/library/token-list.inc:130
182
196
msgid "Token value for ``\" **\" ``."
183
- msgstr ""
197
+ msgstr "Valor token para `` \" ** \" ``. "
184
198
185
199
#: ../Doc/library/token-list.inc:134
186
200
msgid "Token value for ``\" +=\" ``."
187
- msgstr ""
201
+ msgstr "Valor token para `` \" += \" ``. "
188
202
189
203
#: ../Doc/library/token-list.inc:138
190
204
msgid "Token value for ``\" -=\" ``."
191
- msgstr ""
205
+ msgstr "Valor token para `` \" -= \" ``. "
192
206
193
207
#: ../Doc/library/token-list.inc:142
194
208
msgid "Token value for ``\" *=\" ``."
195
- msgstr ""
209
+ msgstr "Valor token para `` \" *= \" ``. "
196
210
197
211
#: ../Doc/library/token-list.inc:146
198
212
msgid "Token value for ``\" /=\" ``."
199
- msgstr ""
213
+ msgstr "Valor token para `` \" /= \" ``. "
200
214
201
215
#: ../Doc/library/token-list.inc:150
202
216
msgid "Token value for ``\" %=\" ``."
203
- msgstr ""
217
+ msgstr "Valor token para `` \" %= \" ``. "
204
218
205
219
#: ../Doc/library/token-list.inc:154
206
220
msgid "Token value for ``\" &=\" ``."
207
- msgstr ""
221
+ msgstr "Valor token para `` \" &= \" ``. "
208
222
209
223
#: ../Doc/library/token-list.inc:158
210
224
msgid "Token value for ``\" |=\" ``."
211
- msgstr ""
225
+ msgstr "Valor token para `` \" |= \" ``. "
212
226
213
227
#: ../Doc/library/token-list.inc:162
214
228
msgid "Token value for ``\" ^=\" ``."
215
- msgstr ""
229
+ msgstr "Valor token para `` \" ^= \" ``. "
216
230
217
231
#: ../Doc/library/token-list.inc:166
218
232
msgid "Token value for ``\" <<=\" ``."
219
- msgstr ""
233
+ msgstr "Valor token para `` \" <<= \" ``. "
220
234
221
235
#: ../Doc/library/token-list.inc:170
222
236
msgid "Token value for ``\" >>=\" ``."
223
- msgstr ""
237
+ msgstr "Valor token para `` \" >>= \" ``. "
224
238
225
239
#: ../Doc/library/token-list.inc:174
226
240
msgid "Token value for ``\" **=\" ``."
227
- msgstr ""
241
+ msgstr "Valor token para `` \" **= \" ``. "
228
242
229
243
#: ../Doc/library/token-list.inc:178
230
244
msgid "Token value for ``\" //\" ``."
231
- msgstr ""
245
+ msgstr "Valor token para `` \" // \" ``. "
232
246
233
247
#: ../Doc/library/token-list.inc:182
234
248
msgid "Token value for ``\" //=\" ``."
235
- msgstr ""
249
+ msgstr "Valor token para `` \" //= \" ``. "
236
250
237
251
#: ../Doc/library/token-list.inc:186
238
252
msgid "Token value for ``\" @\" ``."
239
- msgstr ""
253
+ msgstr "Valor token para `` \" @ \" ``. "
240
254
241
255
#: ../Doc/library/token-list.inc:190
242
256
msgid "Token value for ``\" @=\" ``."
243
- msgstr ""
257
+ msgstr "Valor token para `` \" @= \" ``. "
244
258
245
259
#: ../Doc/library/token-list.inc:194
246
260
msgid "Token value for ``\" ->\" ``."
247
- msgstr ""
261
+ msgstr "Valor token para `` \" -> \" ``. "
248
262
249
263
#: ../Doc/library/token-list.inc:198
250
264
msgid "Token value for ``\" ...\" ``."
251
- msgstr ""
265
+ msgstr "Valor token para `` \" ... \" ``. "
252
266
253
267
#: ../Doc/library/token-list.inc:202
254
268
msgid "Token value for ``\" :=\" ``."
255
- msgstr ""
269
+ msgstr "Valor token para `` \" := \" ``. "
256
270
257
271
#: ../Doc/library/token.rst:49
258
272
msgid ""
259
273
"The following token type values aren't used by the C tokenizer but are "
260
274
"needed for the :mod:`tokenize` module."
261
275
msgstr ""
276
+ "Los siguientes tipos de valores tokens no son usados por el tokenizador C "
277
+ "pero son necesarios para el modulo :mod:`tokenizador`."
262
278
263
279
#: ../Doc/library/token.rst:54
264
280
msgid "Token value used to indicate a comment."
265
- msgstr ""
281
+ msgstr "Valores token usados para indicar un comentario. "
266
282
267
283
#: ../Doc/library/token.rst:59
268
284
msgid ""
@@ -271,34 +287,46 @@ msgid ""
271
287
"generated when a logical line of code is continued over multiple physical "
272
288
"lines."
273
289
msgstr ""
290
+ "Valor token usado para indicar una nueva línea no terminante. El token :"
291
+ "data:`NEWLINE` indica el final de una línea lógica de código Python; los "
292
+ "tokens ``NL`` son generados cuando una línea lógica de código es continuada "
293
+ "sobre múltiples líneas físicas."
274
294
275
295
#: ../Doc/library/token.rst:67
276
296
msgid ""
277
297
"Token value that indicates the encoding used to decode the source bytes into "
278
298
"text. The first token returned by :func:`tokenize.tokenize` will always be "
279
299
"an ``ENCODING`` token."
280
300
msgstr ""
301
+ "Valor de token que indica la codificación usada para decodificar los bytes "
302
+ "de origen en texto. El primer token devuelto por :func:`tokenize.tokenize` "
303
+ "siempre será un token ``ENCODING``."
281
304
282
305
#: ../Doc/library/token.rst:74
283
306
msgid ""
284
307
"Token value indicating that a type comment was recognized. Such tokens are "
285
308
"only produced when :func:`ast.parse()` is invoked with "
286
309
"``type_comments=True``."
287
310
msgstr ""
311
+ "Valor token indicando que un tipo comentario fue reconocido. Dichos tokens "
312
+ "solo son producidos cuando :func:`ast.parse()` es invocado con "
313
+ "``type_comments=True``."
288
314
289
315
#: ../Doc/library/token.rst:79
290
316
msgid "Added :data:`AWAIT` and :data:`ASYNC` tokens."
291
- msgstr ""
317
+ msgstr "Agregados los tokens :data:`AWAIT` y :data:`ASYNC`. "
292
318
293
319
#: ../Doc/library/token.rst:82
294
320
msgid "Added :data:`COMMENT`, :data:`NL` and :data:`ENCODING` tokens."
295
- msgstr ""
321
+ msgstr "Agregados los tokens :data:`COMMENT`, :data:`NL` y :data:`ENCODING`. "
296
322
297
323
#: ../Doc/library/token.rst:85
298
324
msgid ""
299
325
"Removed :data:`AWAIT` and :data:`ASYNC` tokens. \" async\" and \" await\" are "
300
326
"now tokenized as :data:`NAME` tokens."
301
327
msgstr ""
328
+ "Removidos los tokens :data:`AWAIT` y :data:`ASYNC`. \" async\" y \" await\" "
329
+ "son ahora tokenizados como :data:`NAME` tokens."
302
330
303
331
#: ../Doc/library/token.rst:89
304
332
msgid ""
@@ -307,3 +335,8 @@ msgid ""
307
335
"parsing older Python versions for :func:`ast.parse` with ``feature_version`` "
308
336
"set to 6 or lower)."
309
337
msgstr ""
338
+ "Agregados :data:`TYPE_COMMENT`, :data:`TYPE_IGNORE`, :data:`COLONEQUAL`. "
339
+ "Agregados de regreso los tokens :data:`AWAIT` y :data:`ASYNC` (son "
340
+ "necesarios para dar soporte en la sintaxis de versiones más antiguas de "
341
+ "Python para :func:`ast.parse` con ``feature_version`` establecido a 6 o "
342
+ "menor)."
0 commit comments