@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.15\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2026-09-15 17:49 +0000\n "
15+ "POT-Creation-Date : 2026-09-21 18:58 +0000\n "
1616"PO-Revision-Date : 2025-09-16 00:01+0000\n "
1717"Last-Translator : Hengky Kurniawan, 2025\n "
1818"Language-Team : Indonesian (https://app.transifex.com/python-doc/teams/5390/ "
@@ -281,6 +281,16 @@ msgid ""
281281"If ``True``, dictionaries will be outputted sorted by key. Default ``False``."
282282msgstr ""
283283
284+ msgid ""
285+ "Keys in key/value pairs of JSON are always of the type :class:`str`. When a "
286+ "dictionary is converted into JSON, all the keys of the dictionary are "
287+ "converted to strings. As a result of this, if a dictionary is converted into "
288+ "JSON and then back into a dictionary, the dictionary may not equal the "
289+ "original one. That is, ``loads(dumps(x)) != x`` if x has non-string keys. "
290+ "*sort_keys* sorts the keys before they are converted to strings, so numeric "
291+ "keys are sorted by value, not by their string representation."
292+ msgstr ""
293+
284294msgid "Allow strings for *indent* in addition to integers."
285295msgstr ""
286296
@@ -300,16 +310,6 @@ msgid ""
300310"`dump`."
301311msgstr ""
302312
303- msgid ""
304- "Keys in key/value pairs of JSON are always of the type :class:`str`. When a "
305- "dictionary is converted into JSON, all the keys of the dictionary are "
306- "coerced to strings. As a result of this, if a dictionary is converted into "
307- "JSON and then back into a dictionary, the dictionary may not equal the "
308- "original one. That is, ``loads(dumps(x)) != x`` if x has non-string keys. "
309- "*sort_keys* sorts the keys before they are coerced to strings, so numeric "
310- "keys are sorted by value, not by their string representation."
311- msgstr ""
312-
313313msgid ""
314314"Deserialize *fp* to a Python object using the :ref:`JSON-to-Python "
315315"conversion table <json-to-py-table>`."
0 commit comments