diff options
author | TheDmitry <TheDmitry@users.noreply.github.com> | 2015-01-22 18:27:47 +0300 |
---|---|---|
committer | TheDmitry <TheDmitry@users.noreply.github.com> | 2015-01-22 18:27:47 +0300 |
commit | e54d97ebd982db5a1e10263c7bcf1e858df97238 (patch) | |
tree | 3ccec5766aa2857f4e11d37290e22661b6afad38 /ru-ru/json-ru.html.markdown | |
parent | 16c9262d5afd4fb8ad6c21485bb6d56f7f61215d (diff) |
partially translation
Diffstat (limited to 'ru-ru/json-ru.html.markdown')
-rw-r--r-- | ru-ru/json-ru.html.markdown | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/ru-ru/json-ru.html.markdown b/ru-ru/json-ru.html.markdown index f5287138..eac285d7 100644 --- a/ru-ru/json-ru.html.markdown +++ b/ru-ru/json-ru.html.markdown @@ -1,9 +1,12 @@ --- language: json -filename: learnjson.json +filename: learnjson-ru.json contributors: - ["Anna Harren", "https://github.com/iirelu"] - ["Marco Scannadinari", "https://github.com/marcoms"] +translators: + - ["Dmitry Bessonov", "https://github.com/TheDmitry"] +lang: ru-ru --- As JSON is an extremely simple data-interchange format, this is most likely going @@ -15,23 +18,23 @@ going to be 100% valid JSON. Luckily, it kind of speaks for itself. ```json { - "key": "value", + "ключ": "значение", - "keys": "must always be enclosed in double quotes", - "numbers": 0, - "strings": "Hellø, wørld. All unicode is allowed, along with \"escaping\".", + "ключи": "must always be enclosed in double quotes", + "числа": 0, + "строки": "Hellø, wørld. All unicode is allowed, along with \"escaping\".", "has bools?": true, "nothingness": null, - "big number": 1.2e+100, + "большое число": 1.2e+100, - "objects": { - "comment": "Most of your structure will come from objects.", + "объекта": { + "комментарий": "Most of your structure will come from objects.", - "array": [0, 1, 2, 3, "Arrays can have anything in them.", 5], + "массив": [0, 1, 2, 3, "Arrays can have anything in them.", 5], - "another object": { - "comment": "These things can be nested, very useful." + "другой объект": { + "комментарий": "These things can be nested, very useful." } }, |