mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
Add translation loading to splash
This commit is contained in:
parent
c979328aee
commit
a29cb2a6a5
1 changed files with 45 additions and 44 deletions
|
@ -17,29 +17,27 @@
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
<script>
|
<script>
|
||||||
|
async function loadLang() {
|
||||||
const text = document.getElementById("text-splashscreen");
|
const text = document.getElementById("text-splashscreen");
|
||||||
if (window.navigator.onLine === false) {
|
if (window.navigator.onLine === false) {
|
||||||
text.innerHTML = "You appear to be offline. Please connect to the internet and try again.";
|
text.innerHTML = await armcord.getLang("loading_screen_offline");
|
||||||
} else {
|
} else {
|
||||||
text.innerHTML = "Starting ArmCord...";
|
text.innerHTML = await armcord.getLang("loading_screen_start");
|
||||||
if (window.armcord.version === "DEV") {
|
if (window.armcord.version === "DEV") {
|
||||||
console.log("Running a development build of ArmCord. Skipping updater.");
|
console.log("Running a development build of ArmCord. Skipping updater.");
|
||||||
} else {
|
} else {
|
||||||
fetch("https://armcord.xyz/latest.json")
|
const response = await fetch("https://armcord.xyz/latest.json");
|
||||||
.then((response) => response.json())
|
const data = await response.json();
|
||||||
.then((data) => {
|
|
||||||
if (data.version !== window.armcord.version) {
|
if (data.version !== window.armcord.version) {
|
||||||
var elem = document.createElement("img");
|
var elem = document.createElement("img");
|
||||||
elem.classList.add("logo");
|
elem.classList.add("logo");
|
||||||
elem.src = "https://armcord.smartfridge.space/update.webp";
|
elem.src = "https://armcord.smartfridge.space/update.webp";
|
||||||
document.body.prepend(elem);
|
document.body.prepend(elem);
|
||||||
document.getElementById("splashscreen-armcord").remove();
|
document.getElementById("splashscreen-armcord").remove();
|
||||||
text.innerHTML =
|
text.innerHTML = await armcord.getLang("loading_screen_update");
|
||||||
"A new version of ArmCord is available. Please update to the latest version.";
|
|
||||||
} else {
|
} else {
|
||||||
console.log("ArmCord is up to date.");
|
console.log("ArmCord is up to date.");
|
||||||
}
|
}
|
||||||
});
|
|
||||||
}
|
}
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
window.armcordinternal.splashEnd();
|
window.armcordinternal.splashEnd();
|
||||||
|
@ -64,5 +62,8 @@
|
||||||
}
|
}
|
||||||
}, 5000);
|
}, 5000);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
loadLang();
|
||||||
</script>
|
</script>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue