Remove leftovers

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2020-12-01 09:56:05 +01:00
parent ac8856f08c
commit 68d4dc3301
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 0 additions and 3 deletions

View File

@ -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({