working on user lost for admin

This commit is contained in:
2025-07-02 09:17:05 +02:00
parent 086f722074
commit 372cce43fa
7 changed files with 89 additions and 34 deletions

View File

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