@@ -11,15 +11,16 @@ msgstr ""
1111"Project-Id-Version : Python 3.8\n "
1212"Report-Msgid-Bugs-To : \n "
1313"POT-Creation-Date : 2021-10-16 21:42+0200\n "
14- "PO-Revision-Date : 2021-08-04 20:46+0200 \n "
15- "Last-Translator : Cristián Maureira-Fredes <cmaureirafredes@gmail .com>\n "
14+ "PO-Revision-Date : 2021-11-16 16:47-0600 \n "
15+ "Last-Translator : José Luis Salgado Banda <josephLSalgado@outlook .com>\n "
1616"Language : es\n "
1717"Language-Team : python-doc-es\n "
18- "Plural-Forms : nplurals=2; plural=(n != 1)\n "
18+ "Plural-Forms : nplurals=2; plural=(n != 1); \n "
1919"MIME-Version : 1.0\n "
2020"Content-Type : text/plain; charset=utf-8\n "
2121"Content-Transfer-Encoding : 8bit\n "
2222"Generated-By : Babel 2.9.1\n "
23+ "X-Generator : Poedit 3.0\n "
2324
2425#: ../Doc/library/zipimport.rst:2
2526msgid ":mod:`zipimport` --- Import modules from Zip archives"
@@ -119,12 +120,14 @@ msgstr ""
119120
120121#: ../Doc/library/zipimport.rst:48
121122msgid ":mod:`importlib` - The implementation of the import machinery"
122- msgstr ""
123+ msgstr ":mod:`importlib` - La implementación de la maquinaria de importación "
123124
124125#: ../Doc/library/zipimport.rst:48
125126msgid ""
126127"Package providing the relevant protocols for all importers to implement."
127128msgstr ""
129+ "El paquete proporciona los protocolos relevantes para que los implementen "
130+ "todos los importadores."
128131
129132#: ../Doc/library/zipimport.rst:52
130133msgid "This module defines an exception:"
@@ -174,18 +177,21 @@ msgid ""
174177"Implementation of :meth:`importlib.abc.Loader.create_module` that returns :"
175178"const:`None` to explicitly request the default semantics."
176179msgstr ""
180+ "Implementación de :meth:`importlib.abc.Loader.create_module` que retorna :"
181+ "const:`None` para solicitar explícitamente la semántica predeterminada."
177182
178183#: ../Doc/library/zipimport.rst:87
179184msgid "Implementation of :meth:`importlib.abc.Loader.exec_module`."
180- msgstr ""
185+ msgstr "Implementación de :meth:`importlib.abc.Loader.exec_module`. "
181186
182187#: ../Doc/library/zipimport.rst:94
183188msgid "An implementation of :meth:`importlib.abc.PathEntryFinder.find_loader`."
184189msgstr ""
190+ "Una implementación de :meth:`importlib.abc.PathEntryFinder.find_loader`."
185191
186192#: ../Doc/library/zipimport.rst:98 ../Doc/library/zipimport.rst:111
187193msgid "Use :meth:`find_spec` instead."
188- msgstr ""
194+ msgstr "Utilizar en su lugar :meth:`find_spec`. "
189195
190196#: ../Doc/library/zipimport.rst:103
191197msgid ""
@@ -203,16 +209,15 @@ msgstr ""
203209
204210#: ../Doc/library/zipimport.rst:116
205211msgid "An implementation of :meth:`importlib.abc.PathEntryFinder.find_spec`."
206- msgstr ""
212+ msgstr "Una implementación de :meth:`importlib.abc.PathEntryFinder.find_spec`. "
207213
208214#: ../Doc/library/zipimport.rst:123
209- #, fuzzy
210215msgid ""
211216"Return the code object for the specified module. Raise :exc:`ZipImportError` "
212217"if the module couldn't be imported."
213218msgstr ""
214219"Retorna el objeto de código para el módulo especificado. Lanza :exc:"
215- "`ZipImportError` si el módulo no pudo ser encontrado ."
220+ "`ZipImportError` si el módulo no se pudo importar ."
216221
217222#: ../Doc/library/zipimport.rst:129
218223msgid ""
@@ -227,14 +232,13 @@ msgid ":exc:`IOError` used to be raised instead of :exc:`OSError`."
227232msgstr ":exc:`IOError` solía lanzarse en lugar de :exc:`OSError`."
228233
229234#: ../Doc/library/zipimport.rst:138
230- #, fuzzy
231235msgid ""
232236"Return the value ``__file__`` would be set to if the specified module was "
233237"imported. Raise :exc:`ZipImportError` if the module couldn't be imported."
234238msgstr ""
235239"Retorna el valor que se le habría asignado a ``__file__`` si el módulo "
236- "especificado fue importado. Lanza :exc:`ZipImportError` si el módulo no "
237- "pudo ser encontrado ."
240+ "especificado fue importado. Lanza :exc:`ZipImportError` si el módulo no se "
241+ "pudo importar ."
238242
239243#: ../Doc/library/zipimport.rst:147
240244msgid ""
@@ -244,7 +248,7 @@ msgid ""
244248msgstr ""
245249"Retorna el código fuente para el módulo especificado. Lanza :exc:"
246250"`ZipImportError` si el módulo no pudo ser encontrado, retorna :const:`None` "
247- "si el archivo no contiene al módulo, pero no tiene fuente para ello."
251+ "si el archivo contiene al módulo, pero no tiene fuente para ello."
248252
249253#: ../Doc/library/zipimport.rst:155
250254msgid ""
@@ -256,25 +260,26 @@ msgstr ""
256260
257261# dotted notation -- punteado
258262#: ../Doc/library/zipimport.rst:161
259- #, fuzzy
260263msgid ""
261264"Load the module specified by *fullname*. *fullname* must be the fully "
262265"qualified (dotted) module name. Returns the imported module on success, "
263266"raises :exc:`ZipImportError` on failure."
264267msgstr ""
265- "Cargue el módulo especificado por *fullname*. *fullname* debe ser el nombre "
268+ "Carga el módulo especificado por *fullname*. *fullname* debe ser el nombre "
266269"completo de módulo (punteado). Retorna el módulo importado, o lanza :exc:"
267270"`ZipImportError` si no fue encontrado."
268271
269272#: ../Doc/library/zipimport.rst:167
270273msgid "Use :meth:`exec_module` instead."
271- msgstr ""
274+ msgstr "Utilizar en su lugar :meth:`exec_module`. "
272275
273276#: ../Doc/library/zipimport.rst:172
274277msgid ""
275278"Clear out the internal cache of information about files found within the ZIP "
276279"archive."
277280msgstr ""
281+ "Limpia la caché interna de información sobre los archivos que se encuentran "
282+ "dentro del archivo ZIP."
278283
279284#: ../Doc/library/zipimport.rst:180
280285msgid ""
0 commit comments