From 68d4dc33010cb2d72e158e34a60e7a67ee9b6182 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Tue, 1 Dec 2020 09:56:05 +0100 Subject: [PATCH] Remove leftovers Signed-off-by: Thomas Citharel --- js/src/utils/i18n.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/js/src/utils/i18n.ts b/js/src/utils/i18n.ts index 06f722087..b4aaaf9e9 100644 --- a/js/src/utils/i18n.ts +++ b/js/src/utils/i18n.ts @@ -9,7 +9,6 @@ const DEFAULT_LOCALE = "en_US"; let language = getLocaleData() || (document.documentElement.getAttribute("lang") as string); -console.log("lang1", language); language = language || @@ -17,14 +16,12 @@ language = /-/, "_" ); -console.log("language2", language); export const locale = language && Object.prototype.hasOwnProperty.call(langs, language) ? language : language.split("-")[0]; -console.log("lang3", locale); Vue.use(VueI18n); export const i18n = new VueI18n({