@@ -11,15 +11,16 @@ msgstr ""
11
11
"Project-Id-Version : Python 3.8\n "
12
12
"Report-Msgid-Bugs-To : \n "
13
13
"POT-Creation-Date : 2023-10-12 19:43+0200\n "
14
- "PO-Revision-Date : 2021-10-18 22:40-0300\n "
15
- "
Last-Translator :
Cristián Maureira-Fredes <[email protected] >\n "
16
- "Language : es\n "
14
+ "PO-Revision-Date : 2025-04-12 00:04+0100\n "
15
+ "Last-Translator : David Spindola\n "
17
16
"Language-Team : python-doc-es\n "
18
- "Plural-Forms : nplurals=2; plural=(n != 1); \n "
17
+ "Language : es \n "
19
18
"MIME-Version : 1.0\n "
20
19
"Content-Type : text/plain; charset=utf-8\n "
21
20
"Content-Transfer-Encoding : 8bit\n "
21
+ "Plural-Forms : nplurals=2; plural=(n != 1);\n "
22
22
"Generated-By : Babel 2.13.0\n "
23
+ "X-Generator : Poedit 3.6\n "
23
24
24
25
#: ../Doc/c-api/codec.rst:4
25
26
msgid "Codec registry and support functions"
@@ -30,13 +31,12 @@ msgid "Register a new codec search function."
30
31
msgstr "Registra una nueva función de búsqueda de códec."
31
32
32
33
#: ../Doc/c-api/codec.rst:10
33
- #, fuzzy
34
34
msgid ""
35
35
"As side effect, this tries to load the :mod:`!encodings` package, if not yet "
36
36
"done, to make sure that it is always first in the list of search functions."
37
37
msgstr ""
38
- "Como efecto secundario, intenta cargar el paquete :mod:`encodings`, si aún "
39
- "no lo ha hecho, para asegurarse de que siempre esté primero en la lista de "
38
+ "Como efecto secundario, intenta cargar el paquete :mod:`! encodings`, si aún "
39
+ "no se ha hecho, para asegurarse de que siempre esté primero en la lista de "
40
40
"funciones de búsqueda."
41
41
42
42
#: ../Doc/c-api/codec.rst:15
@@ -66,8 +66,8 @@ msgstr "API de codificación genérica basada en códec."
66
66
msgid ""
67
67
"*object* is passed through the encoder function found for the given "
68
68
"*encoding* using the error handling method defined by *errors*. *errors* "
69
- "may be ``NULL`` to use the default method defined for the codec. Raises a : "
70
- "exc:`LookupError` if no encoder can be found."
69
+ "may be ``NULL`` to use the default method defined for the codec. Raises "
70
+ "a : exc:`LookupError` if no encoder can be found."
71
71
msgstr ""
72
72
"*object* se pasa a través de la función de codificador encontrada por el "
73
73
"*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."
83
83
msgid ""
84
84
"*object* is passed through the decoder function found for the given "
85
85
"*encoding* using the error handling method defined by *errors*. *errors* "
86
- "may be ``NULL`` to use the default method defined for the codec. Raises a : "
87
- "exc:`LookupError` if no encoder can be found."
86
+ "may be ``NULL`` to use the default method defined for the codec. Raises "
87
+ "a : exc:`LookupError` if no encoder can be found."
88
88
msgstr ""
89
89
"*object* se pasa a través de la función de decodificador encontrada por el "
90
90
"*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"
100
100
msgid ""
101
101
"In the following functions, the *encoding* string is looked up converted to "
102
102
"all lower-case characters, which makes encodings looked up through this "
103
- "mechanism effectively case-insensitive. If no codec is found, a :exc: "
104
- "`KeyError` is set and ``NULL`` returned."
103
+ "mechanism effectively case-insensitive. If no codec is found, "
104
+ "a :exc: `KeyError` is set and ``NULL`` returned."
105
105
msgstr ""
106
106
"En las siguientes funciones, la cadena de caracteres *encoding* se busca "
107
107
"convertida a todos los caracteres en minúscula, lo que hace que las "
108
108
"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 un : "
110
- "exc:`KeyError` y se retorna ``NULL``."
109
+ "mayúsculas y minúsculas. Si no se encuentra ningún códec, se establece "
110
+ "un : exc:`KeyError` y se retorna ``NULL``."
111
111
112
112
#: ../Doc/c-api/codec.rst:55
113
113
msgid "Get an encoder function for the given *encoding*."
@@ -166,19 +166,19 @@ msgstr ""
166
166
167
167
#: ../Doc/c-api/codec.rst:88
168
168
msgid ""
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 "
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 "
172
172
"sequence of characters or bytes and their offset in the original string "
173
173
"(see :ref:`unicodeexceptions` for functions to extract this information). "
174
174
"The callback must either raise the given exception, or return a two-item "
175
175
"tuple containing the replacement for the problematic sequence, and an "
176
176
"integer giving the offset in the original string at which encoding/decoding "
177
177
"should be resumed."
178
178
msgstr ""
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 "
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 "
182
182
"problemática de caracteres o bytes y su desplazamiento en la cadena original "
183
183
"(consulte :ref:`unicodeexceptions` para funciones para extraer esta "
184
184
"información). La devolución de llamada debe lanzar la excepción dada o "
0 commit comments