From 201ce77266ecc48610eb6bcddb3549615d95cd64 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 17 Feb 2023 03:54:17 +0530 Subject: [PATCH] Add Ukrainian to the language list --- src/plugins/i18n.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/plugins/i18n.js b/src/plugins/i18n.js index 9a7895f..55424aa 100644 --- a/src/plugins/i18n.js +++ b/src/plugins/i18n.js @@ -37,7 +37,8 @@ export const SUPPORTED_LANGUAGES = [ 'hr', 'nl', 'sr', - 'bs' + 'bs', + 'uk' ] export const i18n = new VueI18n({ @@ -88,6 +89,7 @@ async function syncStylesPerLanguage (locale) { case 'nl': case 'sr': case 'bs': + case 'uk': // Don't need to import fonts because Inter supports Latin and Cyrillic and is always loaded document.body.classList.remove(...document.body.classList) document.body.classList.add('default-font')