Pushing map parameters to DB

This commit is contained in:
2021-12-20 21:27:33 +01:00
parent e384162c80
commit 0e06b0e591
14 changed files with 135 additions and 83 deletions

View File

@@ -105,7 +105,10 @@ function Spot(asGlobals)
sLang = self.consts.lang[sKey];
for(i in asParams) sLang = sLang.replace('$'+i, asParams[i]);
}
else console.log('missing translation: '+sKey);
else {
console.log('missing translation: '+sKey);
sLang = sKey;
}
return sLang;
};