diff --git a/src/components/views/DashboardView.vue b/src/components/views/DashboardView.vue index 56b95db..fc50030 100644 --- a/src/components/views/DashboardView.vue +++ b/src/components/views/DashboardView.vue @@ -1,7 +1,7 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/script/i18n/en.ts b/src/script/i18n/en.ts index 480b00e..5bc4a0a 100644 --- a/src/script/i18n/en.ts +++ b/src/script/i18n/en.ts @@ -46,7 +46,11 @@ const en: LocaleInterface = { }, dashboard: { menu: { - 'url-management': 'URL Management', + 'url-management': { + title: 'URL Management', + edit: 'Edit', + display: 'Display' + }, profile: 'Profile', security: 'Security' } diff --git a/src/script/i18n/locale-interface.ts b/src/script/i18n/locale-interface.ts index 00c68c0..bc3dc31 100644 --- a/src/script/i18n/locale-interface.ts +++ b/src/script/i18n/locale-interface.ts @@ -43,7 +43,11 @@ export default interface LocaleInterface { }, dashboard: { menu: { - 'url-management': string, + 'url-management': { + title: string, + edit: string, + display: string + }, profile: string, security: string } diff --git a/src/script/i18n/zhHans.ts b/src/script/i18n/zhHans.ts index 1b995e2..56fe835 100644 --- a/src/script/i18n/zhHans.ts +++ b/src/script/i18n/zhHans.ts @@ -46,7 +46,11 @@ const zhHans: LocaleInterface = { }, dashboard: { menu: { - 'url-management': '链接管理', + 'url-management': { + title: '链接管理', + edit: '编辑', + display: '查看' + }, profile: '用户信息', security: '安全性' }