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 : 2021-03-19 11:16+0100\n "
15
- "PO-Revision-Date : 2020-10-08 22:10+0200 \n "
16
- "Last-Translator : Andreu Vallbona Plazas <avallbona @gmail.com>\n "
14
+ "PO-Revision-Date : 2021-08-24 09:57+0800 \n "
15
+ "Last-Translator : Rodrigo Tobar <rtobarc @gmail.com>\n "
17
16
"Language-Team : python-doc-es\n "
18
17
"MIME-Version : 1.0\n "
19
18
"Content-Type : text/plain; charset=utf-8\n "
20
19
"Content-Transfer-Encoding : 8bit\n "
21
20
"Generated-By : Babel 2.8.0\n "
21
+ "Language : es\n "
22
+ "X-Generator : Poedit 2.4.2\n "
22
23
23
24
#: ../Doc/library/pkgutil.rst:2
24
25
msgid ":mod:`pkgutil` --- Package extension utility"
@@ -144,7 +145,6 @@ msgstr ""
144
145
"mod:`importlib`."
145
146
146
147
#: ../Doc/library/pkgutil.rst:71
147
- #, fuzzy
148
148
msgid ""
149
149
":term:`Loader <loader>` that wraps Python's \" classic\" import algorithm."
150
150
msgstr ""
@@ -198,7 +198,7 @@ msgid ""
198
198
"path_hooks` is necessary."
199
199
msgstr ""
200
200
"La caché (o parte de ella) puede ser borrada manualmente si el escaneo de :"
201
- "data:`sys.path_hooks` es necesario. "
201
+ "data:`sys.path_hooks` es necesario."
202
202
203
203
#: ../Doc/library/pkgutil.rst:111
204
204
msgid "Get a :term:`loader` object for *module_or_name*."
@@ -370,29 +370,37 @@ msgstr ""
370
370
371
371
#: ../Doc/library/pkgutil.rst:234
372
372
msgid "Resolve a name to an object."
373
- msgstr ""
373
+ msgstr "Resuelve un nombre a un objeto. "
374
374
375
375
#: ../Doc/library/pkgutil.rst:236
376
376
msgid ""
377
377
"This functionality is used in numerous places in the standard library (see :"
378
378
"issue:`12915`) - and equivalent functionality is also in widely used third-"
379
379
"party packages such as setuptools, Django and Pyramid."
380
380
msgstr ""
381
+ "Esta funcionalidad es usada en numerosos lugares en la librería estándar "
382
+ "(ver :issue:`12915`) - y existe funcionalidad equivalente también en "
383
+ "librerías de terceros ampliamente usadas, tales como setuptools, Django y "
384
+ "Pyramid."
381
385
382
386
#: ../Doc/library/pkgutil.rst:240
383
387
msgid ""
384
388
"It is expected that *name* will be a string in one of the following formats, "
385
389
"where W is shorthand for a valid Python identifier and dot stands for a "
386
390
"literal period in these pseudo-regexes:"
387
391
msgstr ""
392
+ "Se espera que *name* sea una cadena de caracteres en uno de los siguientes "
393
+ "formatos, donde W representa un identificador de Python válido, y un punto "
394
+ "representa literalmente un punto en las siguientes pseudo-expresiones "
395
+ "regulares:"
388
396
389
397
#: ../Doc/library/pkgutil.rst:244
390
398
msgid "``W(.W)*``"
391
- msgstr ""
399
+ msgstr "``W(.W)*`` "
392
400
393
401
#: ../Doc/library/pkgutil.rst:245
394
402
msgid "``W(.W)*:(W(.W)*)?``"
395
- msgstr ""
403
+ msgstr "``W(.W)*:(W(.W)*)?`` "
396
404
397
405
#: ../Doc/library/pkgutil.rst:247
398
406
msgid ""
@@ -403,6 +411,12 @@ msgid ""
403
411
"inferred by inspection, repeated attempts to import must be done with this "
404
412
"form."
405
413
msgstr ""
414
+ "La primera forma existe sólo para mantener compatibilidad con versiones "
415
+ "anteriores. Asume que parte del nombre con puntos es un paquete, y el resto "
416
+ "es un objeto en algún lugar dentro de ese paquete, posiblemente anidado "
417
+ "dentro de otros objetos. Dado que el lugar donde el paquete termina y la "
418
+ "jerarquía de objetos comienza no puede ser inferida por inspección, con esta "
419
+ "forma se debe realizar repetidos intentos de importación."
406
420
407
421
#: ../Doc/library/pkgutil.rst:254
408
422
msgid ""
@@ -412,23 +426,36 @@ msgid ""
412
426
"hierarchy within that package. Only one import is needed in this form. If it "
413
427
"ends with the colon, then a module object is returned."
414
428
msgstr ""
429
+ "En la segunda forma, el usuario hace claro el punto de división al proveer "
430
+ "un signo de dos puntos: el nombre con puntos a la izquierda de los dos "
431
+ "puntos es el paquete a ser importado, y el nombre con puntos a la derecha es "
432
+ "la jerarquía de nombres dentro de ese paquete. Sólo una importación se "
433
+ "necesaria con esta forma. Si termina con dos puntos, entonces se retorna un "
434
+ "objeto módulo."
415
435
416
436
#: ../Doc/library/pkgutil.rst:260
417
437
msgid ""
418
438
"The function will return an object (which might be a module), or raise one "
419
439
"of the following exceptions:"
420
440
msgstr ""
441
+ "La función retornará un objeto (el cual puede ser un módulo), o lanzará una "
442
+ "de las siguientes excepciones:"
421
443
422
444
#: ../Doc/library/pkgutil.rst:263
423
445
msgid ":exc:`ValueError` -- if *name* isn't in a recognised format."
424
- msgstr ""
446
+ msgstr ":exc:`ValueError` -- si *name* no tiene un formato reconocido. "
425
447
426
448
#: ../Doc/library/pkgutil.rst:265
427
449
msgid ":exc:`ImportError` -- if an import failed when it shouldn't have."
428
450
msgstr ""
451
+ ":exc:`ImportError` -- si una importación falló cuando no lo debería haber "
452
+ "hecho."
429
453
430
454
#: ../Doc/library/pkgutil.rst:267
431
455
msgid ""
432
456
":exc:`AttributeError` -- If a failure occurred when traversing the object "
433
457
"hierarchy within the imported package to get to the desired object."
434
458
msgstr ""
459
+ ":exc:`AttributeError` -- Si un fallo ocurrió mientras se atravesaba la "
460
+ "jerarquía de objetos dentro del paquete importado para obtener el objeto "
461
+ "deseado."
0 commit comments