-
-
Notifications
You must be signed in to change notification settings - Fork 427
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'Blockrain.issues' of https://github.com/Vishalk91-4/sug…
…arizer into pr/1385
- Loading branch information
Showing
2 changed files
with
49 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,55 @@ | ||
define(['i18next.min', 'axios.min'], function (i18next, axios) { | ||
const l10n = {}; | ||
let initialized = false; | ||
const l10n = {language: {direction: "ltr"}}; | ||
|
||
l10n.init = async (lang) => { | ||
await i18next.init({ | ||
lng: lang, | ||
debug: false, | ||
fallbackLng: "en", | ||
resources: {} | ||
}).then(() => { | ||
l10n.switchTo(lang); | ||
}); | ||
}; | ||
l10n.init = async (lang) => { | ||
await i18next.init({ | ||
lng: lang, | ||
fallbackLng: "en", | ||
resources: {} | ||
}).then(() => { | ||
l10n.language.direction = i18next.dir(); | ||
l10n.switchTo(lang); | ||
}); | ||
}; | ||
|
||
l10n.get = (key) => { | ||
return i18next.t(key); | ||
}; | ||
l10n.get = (key, parameter) => { | ||
return i18next.t(key, parameter); | ||
}; | ||
|
||
l10n.loadLanguageResource = (lang) => { | ||
return new Promise((resolve, reject) => { | ||
axios.get("./locales/" + lang + ".json").then((response) => { | ||
resolve(response.data); | ||
}).catch((error) => { | ||
console.log("Failed to load " + lang + " language: " + error); | ||
resolve(null); // Resolve with null to indicate failure | ||
}); | ||
}); | ||
}; | ||
l10n.loadLanguageResource = (lang) => { | ||
return new Promise((resolve, reject) => { | ||
axios.get("./locales/" + lang + ".json").then((response) => { | ||
resolve(response.data); | ||
}).catch((error) => { | ||
console.log("Failed to load " + lang + " language: " + error); | ||
resolve(null); // Resolve with null to indicate failure | ||
}); | ||
}); | ||
}; | ||
|
||
l10n.switchTo = (lang) => { | ||
if (!i18next.hasResourceBundle(lang, "translation")) { | ||
console.log("Loading " + lang + " language"); | ||
l10n.loadLanguageResource(lang).then((locales) => { | ||
if (locales !== null) { | ||
i18next.addResourceBundle(lang, "translation", locales); | ||
} else { | ||
l10n.init("en"); | ||
} | ||
i18next.changeLanguage(lang); | ||
initialized = true; | ||
triggerLocalizedEvent(); | ||
}); | ||
} else { | ||
i18next.changeLanguage(lang); | ||
initialized = true; | ||
triggerLocalizedEvent(); | ||
} | ||
}; | ||
l10n.switchTo = (lang) => { | ||
if (!i18next.hasResourceBundle(lang, "translation")) { | ||
console.log("Loading " + lang + " language"); | ||
l10n.loadLanguageResource(lang).then((locales) => { | ||
if (locales !== null) { | ||
i18next.addResourceBundle(lang, "translation", locales); | ||
i18next.changeLanguage(lang); | ||
triggerLocalizedEvent(); | ||
} else { | ||
l10n.init("en"); | ||
} | ||
}); | ||
} else { | ||
i18next.changeLanguage(lang); | ||
triggerLocalizedEvent(); | ||
} | ||
}; | ||
|
||
function triggerLocalizedEvent() { | ||
const event = new Event("localized"); | ||
window.dispatchEvent(event); | ||
}; | ||
|
||
return l10n; | ||
}); | ||
function triggerLocalizedEvent() { | ||
const event = new Event("localized"); | ||
window.dispatchEvent(event); | ||
}; | ||
|
||
return l10n; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters