2
0

Merge remote-tracking branch 'origin/main'

This commit is contained in:
zhongzm
2025-06-18 19:55:01 +08:00
6 changed files with 21 additions and 6 deletions

View File

@@ -1,9 +1,12 @@
import zhCN from './langs/zh-cn';
import enUS from './langs/en-us';
import localeZhCN from './langs/zh-cn';
import localeEnUS from './langs/en-us';
const fullZhCN = { ...localeZhCN, ...zhCN };
const fullEnUS = { ...localeEnUS, ...enUS };
const locales: Record<App.I18n.LangType, App.I18n.Schema> = {
'zh-CN': zhCN,
'en-US': enUS
'zh-CN': fullZhCN,
'en-US': fullEnUS
};
export default locales;

View File

@@ -58,7 +58,7 @@ const bgColor = computed(() => {
<header class="flex items-center justify-center relative w-full">
<div class="flex items-center">
<WifiOutlined class="text-64px text-primary lt-sm:text-48px" style="margin-left: 9px"/>
<h3 class="text-10px text-primary font-medium self-end">{{ "WANFi" }}</h3>
<h3 class="text-10px text-primary font-medium self-end">{{ $t('system.title') }}</h3>
</div>
<div class="absolute right-0">
<LangSwitch :lang="appStore.locale" :lang-options="appStore.localeOptions" @change-lang="appStore.changeLocale" />