aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src-vue/src/main.ts')
-rw-r--r--src-vue/src/main.ts3
1 files changed, 2 insertions, 1 deletions
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);