test-card/src/lib/i18n.ts
Tomáš Mládek 606cc0ca51
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: new nav with categories & search; add internet speed test and timer test
2024-03-07 16:28:39 +01:00

14 lines
266 B
TypeScript

import i18next from 'i18next';
import { createI18nStore } from 'svelte-i18next';
import enTranslation from './locales/en.json';
i18next.init({
lng: 'en',
resources: {
en: {
translation: enTranslation
}
}
});
export const i18n = createI18nStore(i18next);