mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 23:18:06 +01:00
50188ad211
Port 277e6968f5
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Co-authored-by: Renaud Chaput <renchap@gmail.com>
28 lines
604 B
TypeScript
28 lines
604 B
TypeScript
import { isDevelopment } from 'flavours/glitch/utils/environment';
|
|
|
|
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 (isDevelopment()) {
|
|
throw new Error('getLocale() called before any locale has been set');
|
|
} else {
|
|
return { locale: 'unknown', messages: {} };
|
|
}
|
|
}
|
|
|
|
return loadedLocale;
|
|
}
|
|
|
|
export function isLocaleLoaded() {
|
|
return !!loadedLocale;
|
|
}
|