8000 Traduccion archivo exceptions.po · python/python-docs-es@9b4e383 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9b4e383

Browse files
committed
Traduccion archivo exceptions.po
1 parent 563a1d2 commit 9b4e383

File tree

1 file changed

+31
-2
lines changed

1 file changed

+31
-2
lines changed

library/exceptions.po

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ msgstr ""
99
"Project-Id-Version: Python 3.8\n"
1010
"Report-Msgid-Bugs-To: \n"
1111
"POT-Creation-Date: 2019-05-06 11:59-0400\n"
12-
"PO-Revision-Date: 2020-05-16 17:42-0500\n"
12+
"PO-Revision-Date: 2020-05-16 17:50-0500\n"
1313
"Language-Team: python-doc-es\n"
1414
"MIME-Version: 1.0\n"
1515
"Content-Type: text/plain; charset=UTF-8\n"
@@ -958,13 +958,15 @@ msgstr ""
958958

959959
#: ../Doc/library/exceptions.rst:581
960960
msgid "A base class for connection-related issues."
961-
msgstr ""
961+
msgstr "Una clase base para problemas relacionados con la conexión."
962962

963963
#: ../Doc/library/exceptions.rst:583
964964
msgid ""
965965
"Subclasses are :exc:`BrokenPipeError`, :exc:`ConnectionAbortedError`, :exc:"
966966
"`ConnectionRefusedError` and :exc:`ConnectionResetError`."
967967
msgstr ""
968+
"Las subclases son :exc:`BrokenPipeError`, :exc:`ConnectionAbortedError`, :"
969+
"exc:`ConnectionRefusedError` y :exc:`ConnectionResetError`."
968970

969971
#: ../Doc/library/exceptions.rst:588
970972
msgid ""
@@ -973,62 +975,89 @@ msgid ""
973975
"has been shutdown for writing. Corresponds to :c:data:`errno` ``EPIPE`` and "
974976
"``ESHUTDOWN``."
975977
msgstr ""
978+
"Una subclase de :exc:`ConnectionError`, que se genera cuando se intenta "
979+
"escribir en una tubería mientras el otro extremo se ha cerrado, o cuando se "
980+
10000 "intenta escribir en un \"socket\" que se ha cerrado por escritura. "
981+
"Corresponde a :c:data:`errno` ``EPIPE`` y ``ESHUTDOWN``."
976982

977983
#: ../Doc/library/exceptions.rst:595
978984
msgid ""
979985
"A subclass of :exc:`ConnectionError`, raised when a connection attempt is "
980986
"aborted by the peer. Corresponds to :c:data:`errno` ``ECONNABORTED``."
981987
msgstr ""
988+
"Una subclase de :exc:`ConnectionError`, que se genera cuando el par "
989+
"interrumpe un intento de conexión. Corresponde a :c:data:`errno` "
990+
"``ECONNABORTED``."
982991

983992
#: ../Doc/library/exceptions.rst:601
984993
msgid ""
985994
"A subclass of :exc:`ConnectionError`, raised when a connection attempt is "
986995
"refused by the peer. Corresponds to :c:data:`errno` ``ECONNREFUSED``."
987996
msgstr ""
997+
"Una subclase de :exc:`ConnectionError`, que se genera cuando el par "
998+
"interrumpe un intento de conexión. Corresponde a :c:data:`errno` "
999+
"``ECONNABORTED``."
9881000

9891001
#: ../Doc/library/exceptions.rst:607
9901002
msgid ""
9911003
"A subclass of :exc:`ConnectionError`, raised when a connection is reset by "
9921004
"the peer. Corresponds to :c:data:`errno` ``ECONNRESET``."
9931005
msgstr ""
1006+
"Una subclase de :exc:`ConnectionError`, que se genera cuando el par "
1007+
"restablece una conexión. Corresponde a :c:data:`errno` ``ECONNRESET``."
9941008

9951009
#: ../Doc/library/exceptions.rst:613
9961010
msgid ""
9971011
"Raised when trying to create a file or directory which already exists. "
9981012
"Corresponds to :c:data:`errno` ``EEXIST``."
9991013
msgstr ""
1014+
"Se genera al intentar crear un archivo o directorio que ya existe. "
1015+
"Corresponde a :c:data:`errno` ``EEXIST``."
10001016

10011017
#: ../Doc/library/exceptions.rst:618
10021018
msgid ""
10031019
"Raised when a file or directory is requested but doesn't exist. Corresponds "
10041020
"to :c:data:`errno` ``ENOENT``."
10051021
msgstr ""
1022+
"Se genera cuando se solicita un archivo o directorio pero no existe. "
1023+
"Corresponde a :c:data:`errno` ``ENOENT``."
10061024

10071025
#: ../Doc/library/exceptions.rst:623
10081026
msgid ""
10091027
"Raised when a system call is interrupted by an incoming signal. Corresponds "
10101028
"to :c:data:`errno` :py:data:`~errno.EINTR`."
10111029
msgstr ""
1030+
"Se genera cuando una llamada entrante interrumpe una llamada del sistema. "
1031+
"Corresponde a :c:data:`errno` :py:data:`~errno.EINTR`."
10121032

10131033
#: ../Doc/library/exceptions.rst:626
10141034
msgid ""
10151035
"Python now retries system calls when a syscall is interrupted by a signal, "
10161036
"except if the signal handler raises an exception (see :pep:`475` for the "
10171037
"rationale), instead of raising :exc:`InterruptedError`."
10181038
msgstr ""
1039+
"Python ahora vuelve a intentar las llamadas del sistema cuando una señal "
1040+
"interrumpe un \"syscall\", excepto si el manejador de señales genera una "
1041+
"excepción (ver :pep:`475` para la justificación), en lugar de generar :exc:"
1042+
"`InterruptedError`."
10191043

10201044
#: ../Doc/library/exceptions.rst:633
10211045
msgid ""
10221046
"Raised when a file operation (such as :func:`os.remove`) is requested on a "
10231047
"directory. Corresponds to :c:data:`errno` ``EISDIR``."
10241048
msgstr ""
1049+
"Se genera cuando se solicita una operación de archivo (como :func:`os."
1050+
"remove`) en un directorio. Corresponde a: :c:data:`errno` ``EISDIR``."
10251051

10261052
#: ../Doc/library/exceptions.rst:639
10271053
msgid ""
10281054
"Raised when a directory operation (such as :func:`os.listdir`) is requested "
10291055
"on something which is not a directory. Corresponds to :c:data:`errno` "
10301056
"``ENOTDIR``."
10311057
msgstr ""
1058+
"Se genera cuando se solicita una operación de directorio (como :func:`os."
1059+
"listdir`) en algo que no es un directorio. Corresponde a :c:data:`errno` "
1060+
"``ENOTDIR``."
10321061

10331062
#: ../Doc/library/exceptions.rst:645
10341063
msgid ""

0 commit comments

Comments
 (0)
0