mirror of
https://github.com/Spythere/pojazdownik.git
synced 2026-05-04 03:58:11 +00:00
cleanup i18n; wykrywanie języka
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
import localePL from './locales/pl.json';
|
||||
import localeEN from './locales/en.json';
|
||||
import { createI18n } from 'vue-i18n';
|
||||
import axios from 'axios';
|
||||
|
||||
type LocaleMessageSchema = typeof localePL;
|
||||
type LocaleKey = 'en' | 'pl';
|
||||
|
||||
const locales: { [key in LocaleKey]: LocaleMessageSchema } = {
|
||||
en: localeEN,
|
||||
pl: localePL,
|
||||
};
|
||||
|
||||
const i18n = createI18n<[LocaleMessageSchema], 'en' | 'pl'>({
|
||||
locale: /^pl\b/.test(navigator.language) ? 'pl' : 'en',
|
||||
fallbackLocale: 'pl',
|
||||
legacy: false,
|
||||
globalInjection: true,
|
||||
messages: locales,
|
||||
});
|
||||
|
||||
async function fetchBackendTranslations() {
|
||||
const localeData = (await axios.get(`https://spythere.github.io/api/td2/data/locales.json`)).data;
|
||||
|
||||
i18n.global.mergeLocaleMessage('pl', localeData.pl);
|
||||
i18n.global.mergeLocaleMessage('en', localeData.en);
|
||||
}
|
||||
|
||||
fetchBackendTranslations();
|
||||
|
||||
export default i18n;
|
||||
Reference in New Issue
Block a user