From be9b0d32dd13d66027083f0fcfa8b4e05eb2d134 Mon Sep 17 00:00:00 2001 From: GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> Date: Mon, 8 May 2023 15:20:51 +0200 Subject: feat: Enable Polish translations (#321) * feat: Enable Polish translations * fix: "polish" adjective is written non-capitalized --------- Co-authored-by: Remy Raes --- src-vue/src/main.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src-vue/src/main.ts') diff --git a/src-vue/src/main.ts b/src-vue/src/main.ts index 94a0196b..58429aca 100644 --- a/src-vue/src/main.ts +++ b/src-vue/src/main.ts @@ -14,6 +14,7 @@ import {createRouter, createWebHashHistory} from "vue-router"; import en from "./i18n/lang/en.json"; import fr from "./i18n/lang/fr.json"; import de from "./i18n/lang/de.json"; +import pl from "./i18n/lang/pl.json"; const app = createApp(App); @@ -23,7 +24,7 @@ export const i18n = createI18n({ locale: 'en', fallbackLocale: 'en', messages: { - en, fr, de + en, fr, de, pl } }); app.use(i18n); -- cgit v1.2.3