new: add brazil region

This commit is contained in:
hiddify-com
2024-09-02 04:44:35 +02:00
parent 2901ab6ec4
commit 4bef962812
2 changed files with 3 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ enum Region {
af,
id,
tr,
br,
other;
String present(TranslationsEn t) => switch (this) {
@@ -16,6 +17,7 @@ enum Region {
tr => t.settings.general.regions.tr,
af => t.settings.general.regions.af,
id => t.settings.general.regions.id,
br => t.settings.general.regions.br,
other => t.settings.general.regions.other,
};
}