1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul synced 2024-09-20 02:00:49 +00:00
strimertul/frontend/src/locale/setup.ts
2021-09-17 11:55:15 +02:00

18 lines
314 B
TypeScript

import i18n from 'i18next';
import { initReactI18next } from 'react-i18next';
import en from './en/translation.json';
i18n.use(initReactI18next).init({
resources: {
en: {
translation: en,
},
},
lng: navigator.language,
fallbackLng: 'en',
interpolation: {
escapeValue: false,
},
});