summaryrefslogtreecommitdiff
path: root/packages/frontend/src/i18n.ts
blob: 220c6210c067c7cca13149322ffc5d94efdf269f (plain)
1
2
3
4
5
6
7
8
9
import { markRaw } from 'vue';
import { locale } from '@/config';
import { I18n } from '@/scripts/i18n';

export const i18n = markRaw(new I18n(locale));

export function updateI18n(newLocale) {
	i18n.ts = newLocale;
}