mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-09-05 22:25:49 +08:00
12 lines
198 B
Go
12 lines
198 B
Go
package i18n
|
|
|
|
import ginI18n "github.com/gin-contrib/i18n"
|
|
|
|
func GetMsg(msg string) string {
|
|
content := ginI18n.MustGetMessage(msg)
|
|
if content == "" {
|
|
return msg
|
|
} else {
|
|
return content
|
|
}
|
|
}
|