mapcomplete/UI/i18n/Translation.ts

44 lines
1.1 KiB
TypeScript
Raw Normal View History

2020-07-20 10:39:43 +00:00
import { UIElement } from "../UIElement"
import Locale from "./Locale"
2020-07-20 22:07:04 +00:00
import {FixedUiElement} from "../Base/FixedUiElement";
2020-07-20 10:39:43 +00:00
2020-07-20 22:07:04 +00:00
export default class Translation extends UIElement {
2020-07-20 21:43:42 +00:00
get txt(): string {
const txt = this.translations[Locale.language.data];
if (txt !== undefined) {
return txt;
}
const en = this.translations["en"];
console.warn("No translation for language ", Locale.language.data, "for", en);
2020-07-21 13:18:11 +00:00
if (en !== undefined) {
return en;
}
for (const i in this.translations) {
return this.translations[i]; // Return a random language
}
return "Missing translation"
2020-07-20 10:39:43 +00:00
}
InnerRender(): string {
2020-07-20 21:43:42 +00:00
return this.txt
}
2020-07-20 10:39:43 +00:00
public readonly translations: object
2020-07-20 22:07:04 +00:00
2020-07-20 10:39:43 +00:00
constructor(translations: object) {
super(Locale.language)
this.translations = translations
}
2020-07-20 22:07:04 +00:00
2020-07-20 22:07:04 +00:00
public R(): string {
return new Translation(this.translations).Render();
}
public Clone(){
return new Translation(this.translations)
}
2020-07-20 10:39:43 +00:00
}