Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aandrew-me
GitHub Repository: aandrew-me/ytDownloader
Path: blob/main/translations/i18n-init.js
448 views
1
const I18n = require("../translations/i18n");
2
const i18n = new I18n();
3
4
(async () => {
5
await i18n.init();
6
document.dispatchEvent(new Event("translations-loaded"));
7
})();
8
9
window.i18n = i18n;
10
11