-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathscript.js
36 lines (32 loc) · 1.16 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
document.addEventListener("DOMContentLoaded", function () {
const defaultLang = "en";
let currentLang = localStorage.getItem("lang") || defaultLang;
// Function to load the language file
function loadLang(lang) {
fetch(`./lang/${lang}.json`)
.then((response) => response.json())
.then((translations) => {
document.querySelectorAll("[data-i18n]").forEach((element) => {
const key = element.getAttribute("data-i18n");
const translation = getTranslationByKey(translations, key);
if (translation) {
element.textContent = translation;
}
});
});
}
// Helper function to get translation from nested JSON keys
function getTranslationByKey(translations, key) {
return key.split(".").reduce((acc, part) => acc && acc[part], translations);
}
// Add event listeners to language buttons
document.querySelectorAll(".translate").forEach((button) => {
button.addEventListener("click", function () {
const lang = this.getAttribute("data-lang");
currentLang = lang;
localStorage.setItem("lang", lang);
loadLang(lang);
});
});
loadLang(currentLang);
});