implemented password update procedure

This commit is contained in:
2025-07-02 00:16:13 +02:00
parent 06c620230d
commit 2c2eaacd5d
11 changed files with 176 additions and 10 deletions

View File

@@ -13,7 +13,7 @@ export function t(key,...args){
for (let token of keys){
if (!set[token]){
console.log('Missing translation for '+key);
return keys[keys.length-1].replace('_',' ');
return keys[keys.length-1].replaceAll('_',' ');
}
set = set[token];
}