2020-07-21 00:07:04 +02:00
|
|
|
import {UIEventSource} from "../UIEventSource";
|
2020-07-24 17:53:09 +02:00
|
|
|
import {LocalStorageSource} from "../../Logic/LocalStorageSource";
|
2020-07-20 12:39:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
export default class Locale {
|
2020-07-24 17:53:09 +02:00
|
|
|
public static language: UIEventSource<string> = LocalStorageSource.Get('language', "en");
|
2020-07-20 12:39:43 +02:00
|
|
|
}
|