feat: 多语言 初步引入

This commit is contained in:
2024-03-15 00:01:06 +08:00
parent eae02be2af
commit b2c13a8a6f
45 changed files with 525 additions and 446 deletions

View File

@ -4,7 +4,9 @@ void main(List<String> args) {
switch (args.elementAtOrNull(0)) {
case "gen":
return AutoL10nTools().genL10nFiles();
case "replace":
return AutoL10nTools().replaceL10nFiles();
default:
throw Exception("cmd not found");
throw Exception("cmd not found");
}
}