poprawki tłumaczeń

This commit is contained in:
2024-03-04 21:10:43 +01:00
parent 41b1ab398c
commit 20826d905d
3 changed files with 22 additions and 17 deletions
+19
View File
@@ -0,0 +1,19 @@
import enLang from './locales/en.json';
import plLang from './locales/pl.json';
import { createI18n } from 'vue-i18n';
const i18n = createI18n({
locale: 'pl',
legacy: false,
warnHtmlMessage: false,
fallbackLocale: 'pl',
messages: {
en: enLang,
pl: plLang
},
enableLegacy: false
});
export default i18n;