You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
const I18n = require("../translations/i18n");
|
|
const i18n = new I18n();
|
|
|
|
(async () => {
|
|
await i18n.init();
|
|
document.dispatchEvent(new Event("translations-loaded"));
|
|
})();
|
|
|
|
window.i18n = i18n;
|