extended translations for wiki events, fixed bug in Translatable.argMao

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2026-01-26 20:44:42 +01:00
parent 21ae4024dc
commit 25ad4231c7
4 changed files with 65 additions and 8 deletions

View File

@@ -22,7 +22,7 @@ public class Translatable {
int i = 0;
while (i+1<args.length){
map.put(args[i].toString(),args[i+1]);
i++;
i+=2;
}
return map;
}