@@ -19,11 +19,11 @@ msgstr ""
19
19
20
20
#: ../Doc/library/modulefinder.rst:2
21
21
msgid ":mod:`modulefinder` --- Find modules used by a script"
22
- msgstr ""
22
+ msgstr ":mod:`modulefinder` --- Buscar módulos usados por un script "
23
23
24
24
#: ../Doc/library/modulefinder.rst:9
25
25
msgid "**Source code:** :source:`Lib/modulefinder.py`"
26
- msgstr ""
26
+ msgstr "**Código fuente:** :source:`Lib/modulefinder.py` "
27
27
28
28
#: ../Doc/library/modulefinder.rst:13
29
29
msgid ""
@@ -32,18 +32,27 @@ msgid ""
32
32
"also be run as a script, giving the filename of a Python script as its "
33
33
"argument, after which a report of the imported modules will be printed."
34
34
msgstr ""
35
+ "Este módulo provee una clase :class:`ModuleFinder` que puede ser usada para "
36
+ "determinar el conjunto de módulos importados en un script. ``modulefinder."
37
+ "py`` puede también ejecutarse como un script, dando el nombre de un archivo "
38
+ "de Python como argumento, tras lo cual se imprimirá un reporte de los "
39
+ "módulos importados."
35
40
36
41
#: ../Doc/library/modulefinder.rst:21
37
42
msgid ""
38
43
"Record that the package named *pkg_name* can be found in the specified "
39
44
"*path*."
40
45
msgstr ""
46
+ "Registra que el paquete llamado *pkg_name* pueda ser encontrado en el *path* "
47
+ "especificado."
41
48
42
49
#: ../Doc/library/modulefinder.rst:26
43
50
msgid ""
44
51
"Allows specifying that the module named *oldname* is in fact the package "
45
52
"named *newname*."
46
53
msgstr ""
54
+ "Permite especificar que el módulo llamado *oldname* es de hecho el paquete "
55
+ "llamado *newname*."
47
56
48
57
#: ../Doc/library/modulefinder.rst:32
49
58
msgid ""
@@ -55,37 +64,51 @@ msgid ""
55
64
"names to exclude from the analysis. *replace_paths* is a list of ``(oldpath, "
56
65
"newpath)`` tuples that will be replaced in module paths."
57
66
msgstr ""
67
+ "Esta clase provee los métodos :meth:`run_script` y :meth:`report` que "
68
+ "determinan el conjunto de módulos importados por un script. *path* puede ser "
69
+ "un listado de directorios a buscar por módulos; si no es especificado, se "
70
+ "usará ``sys.path``. *debug* define el nivel de depuración; valores más altos "
71
+ "hacen que la clase imprima mensajes de depuración acerca de lo que está "
72
+ "haciendo. *excludes* es una lista de nombres de módulos que serán excluidos "
73
+ "del análisis. *replace_paths* es una lista de tuplas ``(oldpath, newpath)`` "
74
+ "que serán remplazadas en las rutas de los módulos."
58
75
59
76
#: ../Doc/library/modulefinder.rst:43
60
77
msgid ""
61
78
"Print a report to standard output that lists the modules imported by the "
62
79
"script and their paths, as well as modules that are missing or seem to be "
63
80
"missing."
64
81
msgstr ""
82
+ "Imprime un reporte a la salida estándar que lista los módulos importados por "
83
+ "el script y sus rutas, así como los módulos que faltan o parecieran faltar."
65
84
66
85
#: ../Doc/library/modulefinder.rst:49
67
86
msgid ""
68
87
"Analyze the contents of the *pathname* file, which must contain Python code."
69
88
msgstr ""
89
+ "Analiza los contenidos del archivo *pathname*, que debe contener código "
90
+ "Python."
70
91
71
92
#: ../Doc/library/modulefinder.rst:54
72
93
msgid ""
73
94
"A dictionary mapping module names to modules. See :ref:`modulefinder-"
74
95
"example`."
75
96
msgstr ""
97
+ "Un diccionario que mapea los nombres de los módulos a los módulos. Vea :ref:"
98
+ "`modulefinder-example`."
76
99
77
100
#: ../Doc/library/modulefinder.rst:61
78
101
msgid "Example usage of :class:`ModuleFinder`"
79
- msgstr ""
102
+ msgstr "Ejemplo de uso de :class:`ModuleFinder` "
80
103
81
104
#: ../Doc/library/modulefinder.rst:63
82
105
msgid "The script that is going to get analyzed later on (bacon.py)::"
83
- msgstr ""
106
+ msgstr "El script que será analizado más adelante (bacon.py):: "
84
107
85
108
#: ../Doc/library/modulefinder.rst:78
86
109
msgid "The script that will output the report of bacon.py::"
87
- msgstr ""
110
+ msgstr "El script que generará el reporte de bacon.py:: "
88
111
89
112
#: ../Doc/library/modulefinder.rst:94
90
113
msgid "Sample output (may vary depending on the architecture)::"
91
- msgstr ""
114
+ msgstr "Resultado de ejemplo (puede variar dependiendo de la arquitectura):: "
0 commit comments