@@ -12,14 +12,15 @@ msgstr ""
12
12
"Report-Msgid-Bugs-To : \n "
13
13
"POT-Creation-Date : 2022-10-25 19:47+0200\n "
14
14
"PO-Revision-Date : 2021-08-30 21:44+0800\n "
15
- "Last-Translator : Rodrigo Tobar <rtobarc@gmail .com>\n "
15
+ "Last-Translator : Juan Pablo Esparza R. <jesparzarom@outlook .com>\n "
16
16
"Language : es_ES\n "
17
17
"Language-Team : python-doc-es\n "
18
18
"Plural-Forms : nplurals=2; plural=(n != 1);\n "
19
19
"MIME-Version : 1.0\n "
20
20
"Content-Type : text/plain; charset=utf-8\n "
21
21
"Content-Transfer-Encoding : 8bit\n "
22
22
"Generated-By : Babel 2.10.3\n "
23
+ "X-Generator : Poedit 3.2\n "
23
24
24
25
#: ../Doc/library/json.rst:2
25
26
msgid ":mod:`json` --- JSON encoder and decoder"
@@ -51,6 +52,10 @@ msgid ""
51
52
"string may cause the decoder to consume considerable CPU and memory "
52
53
"resources. Limiting the size of data to be parsed is recommended."
53
54
msgstr ""
55
+ "Se debe tener cuidado al analizar datos JSON de fuentes que no son de "
56
+ "confianza. Una cadena JSON maliciosa puede hacer que el decodificador "
57
+ "consuma considerables recursos del CPU y la memoria. Se recomienda limitar "
58
+ "el tamaño de los datos que se van a analizar."
54
59
55
60
#: ../Doc/library/json.rst:26
56
61
msgid ""
@@ -95,7 +100,6 @@ msgid "See :ref:`json-commandline` for detailed documentation."
95
100
msgstr "Consulte :ref:`json-commandline` para obtener documentación detallada."
96
101
97
102
#: ../Doc/library/json.rst:123
98
- #, fuzzy
99
103
msgid ""
100
104
"JSON is a subset of `YAML <https://yaml.org/>`_ 1.2. The JSON produced by "
101
105
"this module's default settings (in particular, the default *separators* "
@@ -162,15 +166,14 @@ msgstr ""
162
166
"*ensure_ascii* es falso, estos caracteres se mostrarán tal cual."
163
167
164
168
#: ../Doc/library/json.rst:158
165
- #, fuzzy
166
169
msgid ""
167
170
"If *check_circular* is false (default: ``True``), then the circular "
168
171
"reference check for container types will be skipped and a circular reference "
169
172
"will result in a :exc:`RecursionError` (or worse)."
170
173
msgstr ""
171
174
"Si *check_circular* es falso (predeterminado: ``True``), se omitirá la "
172
175
"verificación de referencia circular para los tipos de contenedor y una "
173
- "referencia circular dará como resultado :exc:`OverflowError ` (o peor)."
176
+ "referencia circular dará como resultado :exc:`RecursionError ` (o algo peor)."
174
177
175
178
#: ../Doc/library/json.rst:162
176
179
msgid ""
@@ -311,7 +314,6 @@ msgstr ""
311
314
"ref:`conversion table <json-to-py-table>`."
312
315
313
316
#: ../Doc/library/json.rst:231
314
- #, fuzzy
315
317
msgid ""
316
318
"*object_hook* is an optional function that will be called with the result of "
317
319
"any object literal decoded (a :class:`dict`). The return value of "
@@ -376,6 +378,10 @@ msgid ""
376
378
"integer string via the interpreter's :ref:`integer string conversion length "
377
379
"limitation <int_max_str_digits>` to help avoid denial of service attacks."
378
380
msgstr ""
381
+ "El *parse_int* predeterminado de :func:`int` ahora limita la longitud máxima "
382
+ "de la cadena de enteros a través de la :ref:`integer string conversion "
383
+ "length limitation <int_max_str_digits>` del intérprete para ayudar a evitar "
384
+ "ataques de denegación de servicio."
379
385
380
386
#: ../Doc/library/json.rst:262 ../Doc/library/json.rst:361
381
387
msgid ""
@@ -540,7 +546,6 @@ msgstr ""
540
546
"correspondientes valores ``float``, que está fuera de la especificación JSON."
541
547
542
548
#: ../Doc/library/json.rst:337
543
- #, fuzzy
544
549
msgid ""
545
550
"*object_hook*, if specified, will be called with the result of every JSON "
546
551
"object decoded and its return value will be used in place of the given :"
@@ -668,7 +673,6 @@ msgstr ""
668
673
"simplemente pasados por alto."
669
674
670
675
#: ../Doc/library/json.rst:437
671
- #, fuzzy
672
676
msgid ""
673
677
"If *check_circular* is true (the default), then lists, dicts, and custom "
674
678
"encoded objects will be checked for circular references during encoding to "
@@ -678,7 +682,7 @@ msgstr ""
678
682
"Si *check_circular* es cierto (valor predeterminado), se comprobarán las "
679
683
"listas, los diccionarios y los objetos codificados personalizados en busca "
680
684
"de referencias circulares durante la codificación para evitar una "
681
- "recursividad infinita (lo que provocaría un :exc:`OverflowError `). De lo "
685
+ "recursividad infinita (lo que provocaría un :exc:`RecursionError `). De lo "
682
686
"contrario, no se realiza ninguna comprobación de este tipo."
683
687
684
688
#: ../Doc/library/json.rst:442
0 commit comments