mapcomplete/UI/i18n/Locale.ts

23 lines
596 B
TypeScript
Raw Normal View History

import {UIEventSource} from "../../Logic/UIEventSource";
2020-07-25 18:00:08 +02:00
import {UIElement} from "../UIElement";
import {LocalStorageSource} from "../../Logic/Web/LocalStorageSource";
2020-07-20 12:39:43 +02:00
export default class Locale {
2020-07-25 18:00:08 +02:00
2020-07-31 04:58:58 +02:00
public static language: UIEventSource<string> = Locale.setup();
private static setup() {
2020-07-31 17:11:44 +02:00
const source = LocalStorageSource.Get('language', "en");
if (!UIElement.runningFromConsole) {
// @ts-ignore
window.setLanguage = function (language: string) {
source.setData(language)
}
2020-07-31 04:58:58 +02:00
}
return source;
2020-07-25 18:00:08 +02:00
}
2020-07-31 04:58:58 +02:00
2020-07-20 12:39:43 +02:00
}
2020-07-25 18:00:08 +02:00