aboutsummaryrefslogtreecommitdiff
path: root/src/lib/i18n.ts
blob: 2f6edb889c3763ea7318f73d7e25361e570eb8ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { addMessages, getLocaleFromNavigator, init } from 'svelte-i18n';

import en from './translations/en.json';
import es from './translations/es.json';

addMessages('en', en);
addMessages('es', es);

init({
	fallbackLocale: 'en',
	initialLocale: getLocaleFromNavigator().replace(/-[A-Z]{2}$/, '')
});