-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtranslation.json
More file actions
89 lines (89 loc) · 3.73 KB
/
translation.json
File metadata and controls
89 lines (89 loc) · 3.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"JsonUtils": {
"en": {
"component": "Json Utilities",
"helpString": "This is a component of json utilities, helping developers handle any json in their apps.",
"properties": {},
"events": {},
"methods": {
"isJsonObject": "(DEPRECATED) Use CanParseJsonObject instead"
},
"params": {}
},
"zh_CN": {
"component": "Json工具集",
"helpString": "本Json工具集可以帮助开发者更加方便地进行Json相关的操作",
"properties": {},
"events": {},
"methods": {
"CanParseJsonObject": "可以转换为Json对象",
"Json2List": "Json转列表",
"JsonArray_Append": "Json数组_追加值",
"JsonArray_CreateEmpty": "Json数组_创建空数组",
"JsonArray_Get": "Json数组_取值",
"JsonArray_Length": "Json数组_长度",
"JsonArray_Put": "Json数组_赋值",
"JsonArray_Remove": "Json数组_移除值",
"JsonObject_Contains": "Json对象_包含键",
"JsonObject_CreateEmpty": "Json对象_创建空对象",
"JsonObject_Get": "Json对象_取值",
"JsonObject_GetKeyList": "Json对象_列出所有键",
"JsonObject_Put": "Json对象_赋值",
"JsonObject_Remove": "Json对象_移除",
"JsonObject_Size": "Json对象_键值对数量",
"Json_GetPath": "Json_路径取值",
"Json_PutPath": "Json_路径赋值",
"List2JsonString": "(已弃用)请使用“转为Json字串”",
"ParseJsonString": "解析Json字串",
"ParseList": "解析列表",
"ToJsonString": "转为Json字串",
"isAJsonArray": "值为Json数组",
"isAJsonArrayOrObject": "值为Json数组或对象",
"isAJsonObject": "值为Json对象",
"isJsonObject": "(已弃用)请使用“可以转换为Json对象”",
"isNull": "值为空"
},
"params": {
"path": "路径",
"jsonArray": "json数组",
"jsonObject": "json对象",
"object": "输入值",
"key": "键",
"value": "值",
"index": "索引"
}
}
},
"JsonUtilsSimple": {
"en": {
"component": "Json Utilities Simple",
"helpString": "Json Utilities Simple is based on Json Utilities, simplied operations and all operations are on json strings. Developers don't need to worry about JsonArray or JsonObject types",
"properties": {},
"events": {},
"methods": {},
"params": {}
},
"zh_CN": {
"component": "Json精简工具集",
"helpString": "Json精简工具集基于Json工具集,简化了各类操作,基于json文本进行操作,无需顾虑JsonArray或者JsonObject类型",
"properties": {},
"events": {},
"methods": {
"EmptyArray": "空列表",
"EmptyObject": "空对象",
"GetPath": "路径取值",
"Get": "取值",
"IsNull": "值为空",
"Length": "长度或大小",
"PutPath": "路径赋值",
"Put": "赋值"
},
"params": {
"path": "路径",
"object": "输入值",
"keyOrIndex": "键或索引值",
"value": "值"
}
}
}
}