11# Copyright (C) 2001-2020, Python Software Foundation
22# This file is distributed under the same license as the Python package.
3- # Maintained by the python-doc-es workteam.
3+ # Maintained by the python-doc-es workteam.
44# docs-es@python.org / https://mail.python.org/mailman3/lists/docs-es.python.org/
55# Check https://github.com/PyCampES/python-docs-es/blob/3.7/TRANSLATORS to get the list of volunteers
66#
7- #, fuzzy
87msgid ""
98msgstr ""
109"Project-Id-Version : Python 3.7\n "
1110"Report-Msgid-Bugs-To : \n "
1211"POT-Creation-Date : 2019-05-06 11:59-0400\n "
13- "PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
14- "Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
12+ "PO-Revision-Date : 2020-05-04 19:17+0200\n "
1513"Language-Team : python-doc-es (https://mail.python.org/mailman3/lists/docs-es.python.org)\n "
1614"MIME-Version : 1.0\n "
1715"Content-Type : text/plain; charset=UTF-8\n "
1816"Content-Transfer-Encoding : 8bit\n "
17+ "Last-Translator : Héctor Canto <hectorcanto@gmail.com>\n "
18+ "Language : es\n "
19+ "X-Generator : Poedit 2.0.6\n "
1920
2021#: ../Doc/tutorial/errors.rst:5
2122msgid "Errors and Exceptions"
@@ -158,12 +159,16 @@ msgid ""
158159"First, the *try clause* (the statement(s) between the :keyword:`try` and :"
159160"keyword:`except` keywords) is executed."
160161msgstr ""
162+ "Primero, se ejecuta la cláusula *try* (la(s) linea(s) entre las palabras "
163+ "reservadas :keyword:`try` y la :keyword:`except`)."
161164
162165#: ../Doc/tutorial/errors.rst:101
163166msgid ""
164167"If no exception occurs, the *except clause* is skipped and execution of the :"
165168"keyword:`try` statement is finished."
166169msgstr ""
170+ "Si no ocurre ninguna excepción, la cláusula *except* se omite y la ejecución "
171+ "de la cláusula :keyword:`try` finaliza."
167172
168173#: ../Doc/tutorial/errors.rst:104
169174msgid ""
@@ -172,6 +177,10 @@ msgid ""
172177"keyword:`except` keyword, the except clause is executed, and then execution "
173178"continues after the :keyword:`try` statement."
174179msgstr ""
180+ "Si ocurre una excepción durante la ejecución de la cláusula *try* el resto "
181+ "de la cláusula se omite. Entonces, si el tipo de excepción coincide con la "
182+ "excepción indicada después de la :keyword:`except`, la cláusula `except` se "
183+ "ejecuta, y la ejecución continua después de la :keyword:`try`."
175184
176185#: ../Doc/tutorial/errors.rst:109
177186msgid ""
@@ -180,6 +189,10 @@ msgid ""
180189"handler is found, it is an *unhandled exception* and execution stops with a "
181190"message as shown above."
182191msgstr ""
192+ "Si ocurre una excepción que no coincide con la indicada en la cláusula "
193+ "*except* se pasa a los :keyword:`try` más externos; si no se encuentra un "
194+ "gestor, se genera una *unhandled exception* (excepción sin gestionar) y la "
195+ "ejecución se interrumpen con un mensaje como el que se muestra arriba."
183196
184197#: ../Doc/tutorial/errors.rst:114
185198msgid ""
@@ -377,6 +390,8 @@ msgid ""
377390"Most exceptions are defined with names that end in \" Error\" , similar to the "
378391"naming of the standard exceptions."
379392msgstr ""
393+ "La mayoría de las excepciones se definen con nombres acabados en \" Error\" , "
394+ "de manera similar a la nomenclatura de las excepciones estándar."
380395
381396#: ../Doc/tutorial/errors.rst:320
382397msgid ""
@@ -486,3 +501,7 @@ msgid ""
486501"files, provide predefined clean-up actions will indicate this in their "
487502"documentation."
488503msgstr ""
504+ "Una vez que la declaración se ejecuta, el fichero *f* siempre se cierra, "
505+ "incluso si aparece algún error durante el procesado de las líneas. Los "
506+ "objectos, que, como los ficheros, posean acciones de limpieza predefinidas "
507+ "lo indicarán en su documentación."
0 commit comments