fix: 🐛 (i18n): 修正登录页面国际化文案

- 在英文和中文语言文件中将 "thenetoggle" 错别字修正为 "themeToggle"
This commit is contained in:
zimo493
2025-04-28 14:24:21 +08:00
parent 15abaf3ba9
commit 0907d9d4b1
3 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ export default {
},
// 登录页面国际化
login: {
theneToggle: "Theme Switch",
themeToggle: "Theme Switch",
languageToggle: "Language Switch",
dark: "Dark",
light: "Light",

View File

@@ -6,7 +6,7 @@ export default {
},
// 登录页面国际化
login: {
theneToggle: "主题切换",
themeToggle: "主题切换",
languageToggle: "语言切换",
dark: "暗黑",
light: "明亮",

View File

@@ -2,7 +2,7 @@
<div class="wh-full flex-center flex-col login">
<!-- 右侧切换主题语言按钮 -->
<div class="flex flex-col gap-4px fixed top-40px right-40px text-lg">
<el-tooltip :content="t('login.theneToggle')" placement="left">
<el-tooltip :content="t('login.themeToggle')" placement="left">
<CommonWrapper>
<DarkModeSwitch />
</CommonWrapper>