mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-22 12:48:14 -05:00
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:
parent
6846c897ef
commit
7f33f8239e
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user