removing useless function
All checks were successful
Build and test backend / Build-backend (pull_request) Successful in 1m55s
Build and test backend / Test-backend (pull_request) Successful in 1m52s
Build and test FrontEnd / Build-frontend (pull_request) Successful in 19s

This commit is contained in:
Debucquoy Anthony 2024-03-04 23:44:07 +01:00
parent 516fc0d5e6
commit 6674505ca8
Signed by: tonitch
GPG Key ID: A78D6421F083D42E

View File

@ -32,11 +32,6 @@ function i18n(key, options) {
return ret;
}
async function reloadLang(){
langs = await loadLangs();
}
reloadLang();
export default i18n;
@ -80,5 +75,6 @@ async function loadLangs(lang){
filteredLines[line.substr(0, split)] = line.substr(split+1, line.length);
};
}
return filteredLines;
langs = filteredLines;
}
await loadLangs();