diff --git a/src/i18n/locales/en.ts b/src/i18n/locales/en.ts index 62ac7b3..d024662 100644 --- a/src/i18n/locales/en.ts +++ b/src/i18n/locales/en.ts @@ -4,6 +4,7 @@ export default { signOut: 'Sign out', toggleTheme: 'Toggle theme', toggleLocale: 'Toggle language', + openMenu: 'Open menu', }, // One-line description shown under each page title. subtitles: { diff --git a/src/i18n/locales/ko.ts b/src/i18n/locales/ko.ts index 062cdb1..e97ba1d 100644 --- a/src/i18n/locales/ko.ts +++ b/src/i18n/locales/ko.ts @@ -4,6 +4,7 @@ export default { signOut: '로그아웃', toggleTheme: '테마 전환', toggleLocale: '언어 전환', + openMenu: '메뉴 열기', }, // 각 페이지 제목 아래 한 줄 설명. subtitles: { diff --git a/src/layout/AppLayout.vue b/src/layout/AppLayout.vue index 8fbaad4..3a0d72e 100644 --- a/src/layout/AppLayout.vue +++ b/src/layout/AppLayout.vue @@ -1,5 +1,5 @@