Skip to content

Traducido archivo library/zipimport.po #983

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 4 commits into from
Oct 6, 2020
Merged
Show file tree
Hide file tree
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
Next Next commit
Traducido archivo library/zipimport.po
  • Loading branch information
psicobloc committed Oct 6, 2020
commit bb225179eb7b882183293fdce2565e171e4906b1
1 change: 1 addition & 0 deletions TRANSLATORS
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,4 @@ Yennifer Paola Herrera Ariza (@Yenniferh)
Willian Garcia (@wgarcia1309)
Ana Medina Bernal (@ana-med)
Juan Biondi (@yeyeto2788)
Hugo Valencia Vargas(@psicobloc)
20 changes: 19 additions & 1 deletion library/zipimport.po
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: Python 3.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
"PO-Revision-Date: 2020-05-14 17:23-0300\n"
"PO-Revision-Date: 2020-10-06 13:00-0500\n"
"Language-Team: python-doc-es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
Expand Down Expand Up @@ -54,6 +54,14 @@ msgid ""
"lib/` would only import from the :file:`lib/` subdirectory within the "
"archive."
msgstr ""
"Típicamente :data:`sys.path` es una lista de cadenas con nombres de "
"directorios. Este módulo también permite a un elemento de :data:`sys.path` "
"ser una cadena con la que se nombre a un archivo ZIP. El archivo ZIP puede "
"contener una estructura de subdirectorios para soportar la importación de "
"paquetes, y una ruta dentro del archivo puede ser especificada para "
"únicamente importar desde un subdirectorio. Por ejemplo, la ruta :file:"
"`example.zip/lib/` sólo importaría desde el subdirectorio :file:`lib/` "
"dentro del archivo."

#: ../Doc/library/zipimport.rst:26
msgid ""
Expand All @@ -64,6 +72,13 @@ msgid ""
"the corresponding :file:`.pyc` file, meaning that if a ZIP archive doesn't "
"contain :file:`.pyc` files, importing may be rather slow."
msgstr ""
"Cualquier archivo puede estar presente en el archivo ZIP, pero únicamente "
"los archivos :file:`.py` y :file:`.pyc` están disponibles para importar. La "
"importación ZIP de módulos dinámicos (:file:`.pyd`, :file:`.so`) no está "
"permitida. Cabe señalar que si un archivo ZIP contiene solamente archivos :"
"file:`.py`, Python no intentará modificar el archivo agregando los "
"correspondientes archivos :file:`.pyc`, esto quiere decir que si un archivo "
"ZIP no contiene archivos :file:`.pyc` la importación puede ser algo lenta."

#: ../Doc/library/zipimport.rst:33
msgid "Previously, ZIP archives with an archive comment were not supported."
Expand Down Expand Up @@ -197,6 +212,9 @@ msgid ""
"Return the value ``__file__`` would be set to if the specified module was "
"imported. Raise :exc:`ZipImportError` if the module couldn't be found."
msgstr ""
"Retorna el valor que se le habría asignado a ``__file__`` si el módulo "
"especificado fue importado. Genera :exc:`ZipImportError` si el módulo no "
"pudo ser encontrado."

#: ../Doc/library/zipimport.rst:111
msgid ""
Expand Down