upend/webui/src/lib/i18n/index.ts

13 lines
210 B
TypeScript

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