2021-01-12 23:43:44 +00:00
|
|
|
import { _get } from "../modules/common.js";
|
|
|
|
|
2021-01-12 23:15:12 +00:00
|
|
|
interface Meta {
|
|
|
|
name: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface quantityString {
|
|
|
|
singular: string;
|
|
|
|
plural: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface LangFile {
|
|
|
|
meta: Meta;
|
|
|
|
strings: { [key: string]: string };
|
|
|
|
notifications: { [key: string]: string };
|
|
|
|
quantityStrings: { [key: string]: quantityString };
|
|
|
|
}
|
|
|
|
|
|
|
|
export class lang implements Lang {
|
|
|
|
private _lang: LangFile;
|
|
|
|
constructor(lang: LangFile) {
|
|
|
|
this._lang = lang;
|
|
|
|
}
|
|
|
|
|
|
|
|
get = (sect: string, key: string): string => {
|
|
|
|
if (sect == "quantityStrings" || sect == "meta") { return ""; }
|
|
|
|
return this._lang[sect][key];
|
|
|
|
}
|
|
|
|
|
|
|
|
strings = (key: string): string => this.get("strings", key)
|
|
|
|
notif = (key: string): string => this.get("notifications", key)
|
|
|
|
|
|
|
|
var = (sect: string, key: string, ...subs: string[]): string => {
|
|
|
|
if (sect == "quantityStrings" || sect == "meta") { return ""; }
|
|
|
|
let str = this._lang[sect][key];
|
|
|
|
for (let sub of subs) {
|
|
|
|
str = str.replace("{n}", sub);
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
quantity = (key: string, number: number): string => {
|
|
|
|
if (number == 1) {
|
|
|
|
return this._lang.quantityStrings[key].singular.replace("{n}", ""+number)
|
|
|
|
}
|
|
|
|
return this._lang.quantityStrings[key].plural.replace("{n}", ""+number);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-12 23:43:44 +00:00
|
|
|
export const loadLangSelector = (page: string) => _get("/lang/" + page, null, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
if (req.status != 200) {
|
|
|
|
document.getElementById("lang-dropdown").remove();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const list = document.getElementById("lang-list") as HTMLDivElement;
|
|
|
|
let innerHTML = '';
|
|
|
|
for (let code in req.response) {
|
|
|
|
innerHTML += `<a href="?lang=${code}" class="button input ~neutral field mb-half">${req.response[code]}</a>`;
|
|
|
|
}
|
|
|
|
list.innerHTML = innerHTML;
|
|
|
|
}
|
|
|
|
});
|
2021-01-12 23:15:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|