Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 523f087

Browse files
Traducido archivo library/json (#2235)
Closes #1961 Co-authored-by: Cristián Maureira-Fredes <[email protected]> Co-authored-by: Cristián Maureira-Fredes <[email protected]>
1 parent afe94af commit 523f087

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

TRANSLATORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ Juan E. D. (@j-e-d)
126126
Juan Elias Rodriguez (@Juerodriguez)
127127
Juan Ignacio Rodríguez de León (@euribates)
128128
Juan Molina Riddell
129+
Juan Pablo Esparza R.
129130
Juan Perdomo(@JuanPerdomo00)
130131
Juan Sebastián Marquez (@juansemarquez)
131132
JuanD

library/json.po

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@ msgstr ""
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2022-10-25 19:47+0200\n"
1414
"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"
1616
"Language: es_ES\n"
1717
"Language-Team: python-doc-es\n"
1818
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
"MIME-Version: 1.0\n"
2020
"Content-Type: text/plain; charset=utf-8\n"
2121
"Content-Transfer-Encoding: 8bit\n"
2222
"Generated-By: Babel 2.10.3\n"
23+
"X-Generator: Poedit 3.2\n"
2324

2425
#: ../Doc/library/json.rst:2
2526
msgid ":mod:`json` --- JSON encoder and decoder"
@@ -51,6 +52,10 @@ msgid ""
5152
"string may cause the decoder to consume considerable CPU and memory "
5253
"resources. Limiting the size of data to be parsed is recommended."
5354
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."
5459

5560
#: ../Doc/library/json.rst:26
5661
msgid ""
@@ -95,7 +100,6 @@ msgid "See :ref:`json-commandline` for detailed documentation."
95100
msgstr "Consulte :ref:`json-commandline` para obtener documentación detallada."
96101

97102
#: ../Doc/library/json.rst:123
98-
#, fuzzy
99103
msgid ""
100104
"JSON is a subset of `YAML <https://yaml.org/>`_ 1.2. The JSON produced by "
101105
"this module's default settings (in particular, the default *separators* "
@@ -162,15 +166,14 @@ msgstr ""
162166
"*ensure_ascii* es falso, estos caracteres se mostrarán tal cual."
163167

164168
#: ../Doc/library/json.rst:158
165-
#, fuzzy
166169
msgid ""
167170
"If *check_circular* is false (default: ``True``), then the circular "
168171
"reference check for container types will be skipped and a circular reference "
169172
"will result in a :exc:`RecursionError` (or worse)."
170173
msgstr ""
171174
"Si *check_circular* es falso (predeterminado: ``True``), se omitirá la "
172175
"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)."
174177

175178
#: ../Doc/library/json.rst:162
176179
msgid ""
@@ -311,7 +314,6 @@ msgstr ""
311314
"ref:`conversion table <json-to-py-table>`."
312315

313316
#: ../Doc/library/json.rst:231
314-
#, fuzzy
315317
msgid ""
316318
"*object_hook* is an optional function that will be called with the result of "
317319
"any object literal decoded (a :class:`dict`). The return value of "
@@ -376,6 +378,10 @@ msgid ""
376378
"integer string via the interpreter's :ref:`integer string conversion length "
377379
"limitation <int_max_str_digits>` to help avoid denial of service attacks."
378380
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."
379385

380386
#: ../Doc/library/json.rst:262 ../Doc/library/json.rst:361
381387
msgid ""
@@ -540,7 +546,6 @@ msgstr ""
540546
"correspondientes valores ``float``, que está fuera de la especificación JSON."
541547

542548
#: ../Doc/library/json.rst:337
543-
#, fuzzy
544549
msgid ""
545550
"*object_hook*, if specified, will be called with the result of every JSON "
546551
"object decoded and its return value will be used in place of the given :"
@@ -668,7 +673,6 @@ msgstr ""
668673
"simplemente pasados por alto."
669674

670675
#: ../Doc/library/json.rst:437
671-
#, fuzzy
672676
msgid ""
673677
"If *check_circular* is true (the default), then lists, dicts, and custom "
674678
"encoded objects will be checked for circular references during encoding to "
@@ -678,7 +682,7 @@ msgstr ""
678682
"Si *check_circular* es cierto (valor predeterminado), se comprobarán las "
679683
"listas, los diccionarios y los objetos codificados personalizados en busca "
680684
"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 "
682686
"contrario, no se realiza ninguna comprobación de este tipo."
683687

684688
#: ../Doc/library/json.rst:442

0 commit comments

Comments
 (0)