modify language file

This commit is contained in:
MaysWind 2018-07-01 22:53:20 +08:00
parent 04c2f29e99
commit 65b116d1ba
5 changed files with 14 additions and 8 deletions

View file

@ -1,4 +1,4 @@
[default] [global]
Operation Succeeded=操作成功 Operation Succeeded=操作成功
Connection Succeeded=连接成功 Connection Succeeded=连接成功
Error=错误 Error=错误
@ -264,7 +264,7 @@ debug.latest-logs=最近 {{count}} 条日志
[rpc.error] [rpc.error]
unauthorized=认证失败! unauthorized=认证失败!
[options] [option]
true=是 true=是
false=否 false=否
default=默认 default=默认
@ -289,6 +289,8 @@ feedback=反馈
geom=几何 geom=几何
inorder=顺序 inorder=顺序
random=随机 random=随机
[options]
dir.name=下载路径 dir.name=下载路径
dir.description= dir.description=
log.name=日志文件 log.name=日志文件

View file

@ -1,4 +1,4 @@
[default] [global]
Operation Succeeded=操作成功 Operation Succeeded=操作成功
Connection Succeeded=連線成功 Connection Succeeded=連線成功
Error=錯誤 Error=錯誤
@ -264,7 +264,7 @@ debug.latest-logs=最近 {{count}} 條記錄
[rpc.error] [rpc.error]
unauthorized=認證失敗! unauthorized=認證失敗!
[options] [option]
true=是 true=是
false=否 false=否
default=預設 default=預設
@ -289,6 +289,8 @@ feedback=反饋
geom=幾何 geom=幾何
inorder=順序 inorder=順序
random=隨機 random=隨機
[options]
dir.name=下載路徑 dir.name=下載路徑
dir.description= dir.description=
log.name=記錄檔案 log.name=記錄檔案

View file

@ -270,7 +270,7 @@
'unauthorized': 'Authorization Failed!' 'unauthorized': 'Authorization Failed!'
} }
}, },
'options': { 'option': {
'true': 'True', 'true': 'True',
'false': 'False', 'false': 'False',
'default': 'Default', 'default': 'Default',
@ -308,7 +308,9 @@
'SSLv3': 'SSLv3', 'SSLv3': 'SSLv3',
'TLSv1': 'TLSv1', 'TLSv1': 'TLSv1',
'TLSv1.1': 'TLSv1.1', 'TLSv1.1': 'TLSv1.1',
'TLSv1.2': 'TLSv1.2', 'TLSv1.2': 'TLSv1.2'
},
'options': {
'dir.name': 'Download Path', 'dir.name': 'Download Path',
'dir.description': '', 'dir.description': '',
'log.name': 'Log File', 'log.name': 'Log File',

View file

@ -157,7 +157,7 @@
for (var j = 0; j < option.options.length; j++) { for (var j = 0; j < option.options.length; j++) {
availableOptions.push({ availableOptions.push({
name: 'options.' + option.options[j], name: 'option.' + option.options[j],
value: option.options[j] value: option.options[j]
}); });
} }

View file

@ -28,7 +28,7 @@
category = category.substring(1, category.length - 1); category = category.substring(1, category.length - 1);
} }
if (category === 'default') { if (category === 'global') {
return currentCategory; return currentCategory;
} }