summaryrefslogtreecommitdiffhomepage
path: root/zh-cn
diff options
context:
space:
mode:
authorNami-Doc <vendethiel@hotmail.fr>2014-05-31 10:26:14 +0200
committerNami-Doc <vendethiel@hotmail.fr>2014-05-31 10:26:14 +0200
commit7a5b695486c1d0aead348aff09191f91559ab011 (patch)
treea748d09a830304d05a9437806d99031a0dd62a94 /zh-cn
parentb3182e1cc8c400aa6169922ac8531b17a5a3349f (diff)
parentb0eb92dd5560ebe6f893e2b6088629f1c38d528d (diff)
Merge pull request #626 from checkcheckzz/master
JSON: Chinese translation
Diffstat (limited to 'zh-cn')
-rw-r--r--zh-cn/json-cn.html.markdown51
1 files changed, 51 insertions, 0 deletions
diff --git a/zh-cn/json-cn.html.markdown b/zh-cn/json-cn.html.markdown
new file mode 100644
index 00000000..75966595
--- /dev/null
+++ b/zh-cn/json-cn.html.markdown
@@ -0,0 +1,51 @@
+---
+language: json
+contributors:
+ - ["Anna Harren", "https://github.com/iirelu"]
+translators:
+ - ["Zach Zhang", "https://github.com/checkcheckzz"]
+filename: learnjson-cn.json
+lang: zh-cn
+---
+
+因为JSON是一个极其简单的数据交换形式,这个最有可能将会是曾经最简单
+的Learn X in Y Minutes。
+
+最纯正形式的JSON没有实际的注解,但是大多数解析器将会
+接受C-风格(//, /\* \*/)的注解。为了这个目的,但是,
+一切都将会是100%有效的JSON。幸亏,它是不言自明的。
+
+```json
+{
+ "numbers": 0,
+ "strings": "Hellø, wørld. All unicode is allowed, along with \"escaping\".",
+ "has bools?": true,
+ "nothingness": null,
+
+ "big number": 1.2e+100,
+
+ "objects": {
+ "comment": "Most of your structure will come from objects.",
+
+ "array": [0, 1, 2, 3, "Arrays can have anything in them.", 5],
+
+ "another object": {
+ "comment": "These things can be nested, very useful."
+ }
+ },
+
+ "silliness": [
+ {
+ "sources of potassium": ["bananas"]
+ },
+ [
+ [1, 0, 0, 0],
+ [0, 1, 0, 0],
+ [0, 0, 1, "neo"],
+ [0, 0, 0, 1]
+ ]
+ ],
+
+ "that was short": "And, you're done. You know know everything JSON has to offer."
+}
+```