From a24456d96f318f9a5c85e1dff06540d45787daee Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 7 May 2021 09:30:06 +1000 Subject: [PATCH] fix missing keyboard modifier translations on Linux/Windows https://forums.ankiweb.net/t/card-browser-hotkeys-semi-broken/9815 --- ts/editor/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/editor/index.ts b/ts/editor/index.ts index 8cac7ee94..1f5e8c11b 100644 --- a/ts/editor/index.ts +++ b/ts/editor/index.ts @@ -167,6 +167,6 @@ export function setFormat(cmd: string, arg?: any, nosave: boolean = false): void } } -const i18n = setupI18n({ modules: [ModuleName.EDITING] }); +const i18n = setupI18n({ modules: [ModuleName.EDITING, ModuleName.KEYBOARD] }); export const $editorToolbar = initToolbar(i18n);