modify language file
This commit is contained in:
parent
04c2f29e99
commit
65b116d1ba
|
@ -1,4 +1,4 @@
|
|||
[default]
|
||||
[global]
|
||||
Operation Succeeded=操作成功
|
||||
Connection Succeeded=连接成功
|
||||
Error=错误
|
||||
|
@ -264,7 +264,7 @@ debug.latest-logs=最近 {{count}} 条日志
|
|||
[rpc.error]
|
||||
unauthorized=认证失败!
|
||||
|
||||
[options]
|
||||
[option]
|
||||
true=是
|
||||
false=否
|
||||
default=默认
|
||||
|
@ -289,6 +289,8 @@ feedback=反馈
|
|||
geom=几何
|
||||
inorder=顺序
|
||||
random=随机
|
||||
|
||||
[options]
|
||||
dir.name=下载路径
|
||||
dir.description=
|
||||
log.name=日志文件
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
[default]
|
||||
[global]
|
||||
Operation Succeeded=操作成功
|
||||
Connection Succeeded=連線成功
|
||||
Error=錯誤
|
||||
|
@ -264,7 +264,7 @@ debug.latest-logs=最近 {{count}} 條記錄
|
|||
[rpc.error]
|
||||
unauthorized=認證失敗!
|
||||
|
||||
[options]
|
||||
[option]
|
||||
true=是
|
||||
false=否
|
||||
default=預設
|
||||
|
@ -289,6 +289,8 @@ feedback=反饋
|
|||
geom=幾何
|
||||
inorder=順序
|
||||
random=隨機
|
||||
|
||||
[options]
|
||||
dir.name=下載路徑
|
||||
dir.description=
|
||||
log.name=記錄檔案
|
||||
|
|
|
@ -270,7 +270,7 @@
|
|||
'unauthorized': 'Authorization Failed!'
|
||||
}
|
||||
},
|
||||
'options': {
|
||||
'option': {
|
||||
'true': 'True',
|
||||
'false': 'False',
|
||||
'default': 'Default',
|
||||
|
@ -308,7 +308,9 @@
|
|||
'SSLv3': 'SSLv3',
|
||||
'TLSv1': 'TLSv1',
|
||||
'TLSv1.1': 'TLSv1.1',
|
||||
'TLSv1.2': 'TLSv1.2',
|
||||
'TLSv1.2': 'TLSv1.2'
|
||||
},
|
||||
'options': {
|
||||
'dir.name': 'Download Path',
|
||||
'dir.description': '',
|
||||
'log.name': 'Log File',
|
||||
|
|
|
@ -157,7 +157,7 @@
|
|||
|
||||
for (var j = 0; j < option.options.length; j++) {
|
||||
availableOptions.push({
|
||||
name: 'options.' + option.options[j],
|
||||
name: 'option.' + option.options[j],
|
||||
value: option.options[j]
|
||||
});
|
||||
}
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
category = category.substring(1, category.length - 1);
|
||||
}
|
||||
|
||||
if (category === 'default') {
|
||||
if (category === 'global') {
|
||||
return currentCategory;
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue