Skip to content

Commit bb22517

Browse files
committed
Traducido archivo library/zipimport.po
1 parent d044a69 commit bb22517

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

TRANSLATORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,3 +95,4 @@ Yennifer Paola Herrera Ariza (@Yenniferh)
9595
Willian Garcia (@wgarcia1309)
9696
Ana Medina Bernal (@ana-med)
9797
Juan Biondi (@yeyeto2788)
98+
Hugo Valencia Vargas(@psicobloc)

library/zipimport.po

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
14-
"PO-Revision-Date: 2020-05-14 17:23-0300\n"
14+
"PO-Revision-Date: 2020-10-06 13:00-0500\n"
1515
"Language-Team: python-doc-es\n"
1616
"MIME-Version: 1.0\n"
1717
"Content-Type: text/plain; charset=UTF-8\n"
@@ -54,6 +54,14 @@ msgid ""
5454
"lib/` would only import from the :file:`lib/` subdirectory within the "
5555
"archive."
5656
msgstr ""
57+
"Típicamente :data:`sys.path` es una lista de cadenas con nombres de "
58+
"directorios. Este módulo también permite a un elemento de :data:`sys.path` "
59+
"ser una cadena con la que se nombre a un archivo ZIP. El archivo ZIP puede "
60+
"contener una estructura de subdirectorios para soportar la importación de "
61+
"paquetes, y una ruta dentro del archivo puede ser especificada para "
62+
"únicamente importar desde un subdirectorio. Por ejemplo, la ruta :file:"
63+
"`example.zip/lib/` sólo importaría desde el subdirectorio :file:`lib/` "
64+
"dentro del archivo."
5765

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

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

201219
#: ../Doc/library/zipimport.rst:111
202220
msgid ""

0 commit comments

Comments
 (0)