adjust translate

This commit is contained in:
杨黄林
2023-09-11 14:05:47 +08:00
parent 4f8583dfbe
commit 3528d6ed17
4 changed files with 6 additions and 3 deletions

View File

@@ -89,5 +89,6 @@
"Current Connections": "Current Connections",
"Client Counts": "Client Counts",
"Proxy Counts": "Proxy Counts",
"Not Set": "Not Set"
"Not Set": "Not Set",
"Proxy": "Proxies"
}

View File

@@ -89,5 +89,6 @@
"Current Connections": "当前连接数",
"Client Counts": "客户端总数",
"Proxy Counts": "代理总数",
"Not Set": "未配置"
"Not Set": "未配置",
"Proxy": "代理数量"
}

View File

@@ -139,7 +139,7 @@ var loadServerInfo = (function ($) {
var chart = echarts.init(chartDom);
var option = {
title: {
text: i18n['Proxies'],
text: i18n['Proxy'],
subtext: i18n['now'],
left: 'center',
textStyle: {

View File

@@ -289,6 +289,7 @@ func (c *HandleController) MakeLangFunc() func(context *gin.Context) {
"now": ginI18n.MustGetMessage(context, "now"),
"Proxies": ginI18n.MustGetMessage(context, "Proxies"),
"NotSet": ginI18n.MustGetMessage(context, "Not Set"),
"Proxy": ginI18n.MustGetMessage(context, "Proxy"),
})
}
}