add startPage option, other fixes and improvements

This commit is contained in:
_Bastler
2025-12-19 20:38:30 +01:00
parent 6875ed6bf2
commit db877f972a
46 changed files with 847 additions and 700 deletions
+2 -2
View File
@@ -80,8 +80,8 @@ export class I18nService {
return empty ? this.empty(key, args, path) : (key || "");
} else if (from[key]) {
if (typeof from[key] === 'object') {
if (from[key]["."]) {
return this.insertArguments(from[key]["."], args);
if (from[key][""]) {
return this.insertArguments(from[key][""], args);
}
return empty ? this.empty(key, args, path) : (key || "");
}