@@ -66,8 +66,8 @@ msgstr "API de codificación genérica basada en códec."
6666msgid ""
6767"*object* is passed through the encoder function found for the given "
6868"*encoding* using the error handling method defined by *errors*. *errors* "
69- "may be ``NULL`` to use the default method defined for the codec. Raises "
70- "a : exc:`LookupError` if no encoder can be found."
69+ "may be ``NULL`` to use the default method defined for the codec. Raises a : "
70+ "exc:`LookupError` if no encoder can be found."
7171msgstr ""
7272"*object* se pasa a través de la función de codificador encontrada por el "
7373"*encoding* dado usando el método de manejo de errores definido por *errors*. "
@@ -83,8 +83,8 @@ msgstr "API de decodificación basada en códec genérico."
8383msgid ""
8484"*object* is passed through the decoder function found for the given "
8585"*encoding* using the error handling method defined by *errors*. *errors* "
86- "may be ``NULL`` to use the default method defined for the codec. Raises "
87- "a : exc:`LookupError` if no encoder can be found."
86+ "may be ``NULL`` to use the default method defined for the codec. Raises a : "
87+ "exc:`LookupError` if no encoder can be found."
8888msgstr ""
8989"*object* se pasa a través de la función de decodificador encontrada por el "
9090"*encoding* dado usando el método de manejo de errores definido por *errors*. "
@@ -100,14 +100,14 @@ msgstr "API de búsqueda de códec"
100100msgid ""
101101"In the following functions, the *encoding* string is looked up converted to "
102102"all lower-case characters, which makes encodings looked up through this "
103- "mechanism effectively case-insensitive. If no codec is found, "
104- "a :exc: `KeyError` is set and ``NULL`` returned."
103+ "mechanism effectively case-insensitive. If no codec is found, a :exc: "
104+ "`KeyError` is set and ``NULL`` returned."
105105msgstr ""
106106"En las siguientes funciones, la cadena de caracteres *encoding* se busca "
107107"convertida a todos los caracteres en minúscula, lo que hace que las "
108108"codificaciones se busquen a través de este mecanismo sin distinción entre "
109- "mayúsculas y minúsculas. Si no se encuentra ningún códec, se establece "
110- "un : exc:`KeyError` y se retorna ``NULL``."
109+ "mayúsculas y minúsculas. Si no se encuentra ningún códec, se establece un : "
110+ "exc:`KeyError` y se retorna ``NULL``."
111111
112112#: ../Doc/c-api/codec.rst:55
113113msgid "Get an encoder function for the given *encoding*."
@@ -166,19 +166,19 @@ msgstr ""
166166
167167#: ../Doc/c-api/codec.rst:88
168168msgid ""
169- "The callback gets a single argument, an instance "
170- "of :exc: `UnicodeEncodeError`, :exc:`UnicodeDecodeError` "
171- "or :exc: `UnicodeTranslateError` that holds information about the problematic "
169+ "The callback gets a single argument, an instance of :exc: "
170+ "`UnicodeEncodeError`, :exc:`UnicodeDecodeError` or :exc: "
171+ "`UnicodeTranslateError` that holds information about the problematic "
172172"sequence of characters or bytes and their offset in the original string "
173173"(see :ref:`unicodeexceptions` for functions to extract this information). "
174174"The callback must either raise the given exception, or return a two-item "
175175"tuple containing the replacement for the problematic sequence, and an "
176176"integer giving the offset in the original string at which encoding/decoding "
177177"should be resumed."
178178msgstr ""
179- "La devolución de llamada obtiene un único argumento, una instancia "
180- "de :exc: `UnicodeEncodeError`, :exc:`UnicodeDecodeError` "
181- "o :exc: `UnicodeTranslateError` que contiene información sobre la secuencia "
179+ "La devolución de llamada obtiene un único argumento, una instancia de :exc: "
180+ "`UnicodeEncodeError`, :exc:`UnicodeDecodeError` o :exc: "
181+ "`UnicodeTranslateError` que contiene información sobre la secuencia "
182182"problemática de caracteres o bytes y su desplazamiento en la cadena original "
183183"(consulte :ref:`unicodeexceptions` para funciones para extraer esta "
184184"información). La devolución de llamada debe lanzar la excepción dada o "
@@ -223,8 +223,8 @@ msgid ""
223223"Replace the unicode encode error with backslash escapes (``\\ x``, ``\\ u`` "
224224"and ``\\ U``)."
225225msgstr ""
226- "Reemplaza el error de codificación Unicode con escapes de barra invertida "
227- "(`` \\ x``, ``\\ u`` y ``\\ U``)."
226+ "Reemplaza el error de codificación Unicode con escapes de barra invertida (`` "
227+ "\\ x``, ``\\ u`` y ``\\ U``)."
228228
229229#: ../Doc/c-api/codec.rst:129
230230msgid "Replace the unicode encode error with ``\\ N{...}`` escapes."
0 commit comments