From 00f3a1e1ec776168adfdf87fbfcc59e2034eb2b1 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 26 Dec 2020 10:51:00 +0900 Subject: wip --- src/client/sidebar.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/client/sidebar.ts') diff --git a/src/client/sidebar.ts b/src/client/sidebar.ts index 318c0c5331..98a70d2d1a 100644 --- a/src/client/sidebar.ts +++ b/src/client/sidebar.ts @@ -130,19 +130,19 @@ export const sidebarDef = { icon: faColumns, action: (ev) => { os.modalMenu([{ - text: i18n.global.t('default'), + text: i18n.locale.default, action: () => { localStorage.setItem('ui', 'default'); location.reload(); } }, { - text: i18n.global.t('deck'), + text: i18n.locale.deck, action: () => { localStorage.setItem('ui', 'deck'); location.reload(); } }, { - text: i18n.global.t('desktop') + ' (β)', + text: i18n.locale.desktop + ' (β)', action: () => { localStorage.setItem('ui', 'desktop'); location.reload(); -- cgit v1.2.3-freya