Add Indonesia region

This commit is contained in:
SonzaiEkkusu
2024-07-23 18:46:37 +07:00
parent 91b30d59a9
commit 4050113dad
3 changed files with 10 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ enum Region {
cn,
ru,
af,
id,
other;
String present(TranslationsEn t) => switch (this) {
@@ -12,6 +13,7 @@ enum Region {
cn => t.settings.general.regions.cn,
ru => t.settings.general.regions.ru,
af => t.settings.general.regions.af,
id => t.settings.general.regions.id,
other => t.settings.general.regions.other,
};
}