fix(i18n): replace hyphen with underscore (#524)

* fix(i18n): repleace hyphen with underscore

* chore: upgrade user frontend

---------

Co-authored-by: naiba <hi@nai.ba>
This commit is contained in:
UUBulb 2024-12-01 23:19:06 +08:00 committed by GitHub
parent 6846c897ef
commit 7f33f8239e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -45,7 +45,7 @@ jobs:
- uses: robinraju/release-downloader@v1
with:
repository: nezhahq/user-frontend
tag: v1.0.6
tag: v1.0.7
fileName: dist.zip
latest: true
extract: true

View File

@ -5,6 +5,7 @@ import (
"bytes"
"fmt"
"log"
"strings"
"github.com/nezhahq/nezha/pkg/i18n"
)
@ -25,6 +26,7 @@ func loadTranslation() error {
lang = "zh_CN"
}
lang = strings.Replace(lang, "-", "_", 1)
data, err := getTranslationArchive(lang)
if err != nil {
return err
@ -35,6 +37,7 @@ func loadTranslation() error {
}
func OnUpdateLang(lang string) error {
lang = strings.Replace(lang, "-", "_", 1)
if Localizer.Exists(lang) {
Localizer.SetLanguage(lang)
return nil