mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-12-04 19:57:26 +00:00
9 lines
218 B
TypeScript
9 lines
218 B
TypeScript
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;
|
|
}
|