mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-24 10:01:38 +00:00
partially translation
This commit is contained in:
parent
16c9262d5a
commit
e54d97ebd9
@ -1,9 +1,12 @@
|
|||||||
---
|
---
|
||||||
language: json
|
language: json
|
||||||
filename: learnjson.json
|
filename: learnjson-ru.json
|
||||||
contributors:
|
contributors:
|
||||||
- ["Anna Harren", "https://github.com/iirelu"]
|
- ["Anna Harren", "https://github.com/iirelu"]
|
||||||
- ["Marco Scannadinari", "https://github.com/marcoms"]
|
- ["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
|
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
|
```json
|
||||||
{
|
{
|
||||||
"key": "value",
|
"ключ": "значение",
|
||||||
|
|
||||||
"keys": "must always be enclosed in double quotes",
|
"ключи": "must always be enclosed in double quotes",
|
||||||
"numbers": 0,
|
"числа": 0,
|
||||||
"strings": "Hellø, wørld. All unicode is allowed, along with \"escaping\".",
|
"строки": "Hellø, wørld. All unicode is allowed, along with \"escaping\".",
|
||||||
"has bools?": true,
|
"has bools?": true,
|
||||||
"nothingness": null,
|
"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."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user