fixed: status text of i18n in Overview

This commit is contained in:
2023-12-14 09:27:02 +08:00
parent e5b0f2c061
commit 8a39342519
3 changed files with 6 additions and 0 deletions

View File

@@ -51,6 +51,8 @@
"Status": "Status",
"Info": "Info",
"running": "running",
"start error": "start error",
"new": "new",
"Local Ip": "Local Ip",
"Local Port": "Local Port",
"Operation": "Operation",

View File

@@ -51,6 +51,8 @@
"Status": "状态",
"Info": "消息",
"running": "运行中",
"start error": "错误",
"new": "新连接",
"Local Ip": "本地IP",
"Local Port": "本地端口",
"Operation": "操作",

View File

@@ -114,6 +114,8 @@ func (c *HandleController) MakeLangFunc() func(context *gin.Context) {
"Status": ginI18n.MustGetMessage(context, "Status"),
"Info": ginI18n.MustGetMessage(context, "Info"),
"running": ginI18n.MustGetMessage(context, "running"),
"start error": ginI18n.MustGetMessage(context, "start error"),
"new": ginI18n.MustGetMessage(context, "new"),
"LocalIp": ginI18n.MustGetMessage(context, "Local Ip"),
"LocalPort": ginI18n.MustGetMessage(context, "Local Port"),
"RemotePort": ginI18n.MustGetMessage(context, "Remote Port"),