8000 traduce library/modulefinder.po by dvidsilva · Pull Request #1137 · python/python-docs-es · GitHub
[go: up one dir, main page]

Skip to content

traduce library/modulefinder.po #1137

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Dec 20, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixed the error in library/modulefinder
  • Loading branch information
dvidsilva committed Nov 5, 2020
commit 60e6ea7eb68a26081cefa0f2107bb8940f149aab
57 changes: 39 additions & 18 deletions library/modulefinder.po
Original file line number Diff line number Diff line change
Expand Up @@ -17,35 +17,51 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"

#: ../Doc/library/modulefinder.rst:2
msgid ":mod:`modulefinder` --- Encuentra los módulos usado por un script"
msgstr ""
msgid ":mod:`modulefinder` --- Find modules used by a script"
msgstr ":mod:`modulefinder` --- Encuentra los módulos usado por un script"

#: ../Doc/library/modulefinder.rst:9
msgid "**Source code:** :source:`Lib/modulefinder.py`"
msgstr ""
msgstr "**Código fuente:** :source:`Lib/modulefinder.py`"

#: ../Doc/library/modulefinder.rst:13
msgid ""
"This module provides a :class:`ModuleFinder` class that can be used to "
"determine the set of modules imported by a script. ``modulefinder.py`` can "
"also be run as a script, giving the filename of a Python script as its "
"argument, after which a report of the imported modules will be printed."
msgstr ""
"Este módulo provee una clase :class:`ModuleFinder` que puede ser usada para "
"determinar el conjunto de módulos importados en un script. ``modulefinder."
"py`` puede tambien correr como un script, dado el nombre de de un archivo de "
"Python como argumento, tras lo cual se imprimirá un reporte de los módulos."
msgstr ""

#: ../Doc/library/modulefinder.rst:21
msgid ""
"Record that the package named *pkg_name* can be found in the specified "
"*path*."
msgstr ""
"Registre que el paquete llamado *pkg_name* pueda ser encontrado en el *path* "
"especificado"
msgstr ""

#: ../Doc/library/modulefinder.rst:26
msgid ""
"Allows specifying that the module named *oldname* is in fact the package "
"named *newname*."
msgstr ""
"Permite especificar que el módulo llamado *oldname* es de hecho el paquete "
"llamado *newname*"
msgstr ""

#: ../Doc/library/modulefinder.rst:32
msgid ""
"This class provides :meth:`run_script` and :meth:`report` methods to "
"determine the set of modules imported by a script. *path* can be a list of "
"directories to search for modules; if not specified, ``sys.path`` is used. "
"*debug* sets the debugging level; higher values make the class print "
"debugging messages about what it's doing. *excludes* is a list of module "
"names to exclude from the analysis. *replace_paths* is a list of ``(oldpath, "
"newpath)`` tuples that will be replaced in module paths."
msgstr ""
"Esta clase provee los metodos :meth:`run_script` y :meth:`report` que "
"determinan el conjunto de módulos importados por un script. *path* puede ser "
"un listado de directorios para buscar sus módulos; si no es especificado, se "
Expand All @@ -54,39 +70,44 @@ msgid ""
"haciendo. *excludes* es una lista de nombres de módulos que serán excluidos "
"del analisis. *replace_paths* es una lista de ``(oldpath, newpath)`` tuplas "
"que serán remplazadas en las rutas de los módulos."
msgstr ""

#: ../Doc/library/modulefinder.rst:43
msgid ""
"Print a report to standard output that lists the modules imported by the "
"script and their paths, as well as modules that are missing or seem to be "
"missing."
msgstr ""
"Imprime un reporte a la salida estandard que lista los módulos importadospor "
"el script y sus rutas, como también los módulos que hacen falta o pareciera "
"que hacen falta "
msgstr ""

#: ../Doc/library/modulefinder.rst:49
msgid ""
"Analyze the contents of the *pathname* file, which must contain Python code."
msgstr ""
"Análisa los contenidos del archivo *pathname*, que debe contener código de "
"Python "
msgstr ""

#: ../Doc/library/modulefinder.rst:54
msgid ""
"A dictionary mapping module names to modules. See :ref:`modulefinder-"
"example`."
msgstr ""
"Un diccionario que mapea los nombres de los módulos a los módulos. Vea :ref:"
"`modulefinder-example`."
msgstr ""

#: ../Doc/library/modulefinder.rst:61
msgid "Uso de ejemplo de :class:`ModuleFinder`"
msgstr ""
msgid "Example usage of :class:`ModuleFinder`"
msgstr "Uso de ejemplo de :class:`ModuleFinder`"

#: ../Doc/library/modulefinder.rst:63
msgid "El script que será análisado luego en (bacon.py)::"
msgstr ""
msgid "The script that is going to get analyzed later on (bacon.py)::"
msgstr "El script que será análisado luego en (bacon.py)::"

#: ../Doc/library/modulefinder.rst:78
msgid "El script que tendrá el resultado del reporte de bacon.py::"
msgstr ""
msgid "The script that will output the report of bacon.py::"
msgstr "El script que tendrá el resultado del reporte de bacon.py::"

#: ../Doc/library/modulefinder.rst:94
msgid "Resultado de ejemplo (puede variar dependiendo en la arquitectura)::"
msgstr ""
msgid "Sample output (may vary depending on the architecture)::"
msgstr "Resultado de ejemplo (puede variar dependiendo en la arquitectura)::"
0