From 49745e1282cf2afd2892be020f0f9af32e3fd487 Mon Sep 17 00:00:00 2001 From: Henrik Giesel Date: Fri, 7 May 2021 02:14:54 +0200 Subject: [PATCH] Fix module name formatting --- ts/editor/index.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ts/editor/index.ts b/ts/editor/index.ts index b2d638e3d..eb2980e2c 100644 --- a/ts/editor/index.ts +++ b/ts/editor/index.ts @@ -171,7 +171,12 @@ export function setFormat(cmd: string, arg?: string, nosave = false): void { } const i18n = setupI18n({ - modules: [ModuleName.EDITING, ModuleName.KEYBOARD, ModuleName.ACTIONS, ModuleName.BROWSING], + modules: [ + ModuleName.EDITING, + ModuleName.KEYBOARD, + ModuleName.ACTIONS, + ModuleName.BROWSING, + ], }); import type EditorToolbar from "./EditorToolbar.svelte";