1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-14 22:59:38 +09:00
whippy-edition/app/javascript/mastodon/locales/global_locale.ts
2023-07-13 11:49:16 +02:00

27 lines
559 B
TypeScript

export interface LocaleData {
locale: string;
messages: Record<string, string>;
}
let loadedLocale: LocaleData | undefined;
export function setLocale(locale: LocaleData) {
loadedLocale = locale;
}
export function getLocale(): LocaleData {
if (!loadedLocale) {
if (process.env.NODE_ENV === 'development') {
throw new Error('getLocale() called before any locale has been set');
} else {
return { locale: 'unknown', messages: {} };
}
}
return loadedLocale;
}
export function isLocaleLoaded() {
return !!loadedLocale;
}