new: add turkey region

This commit is contained in:
hiddify-com
2024-08-02 15:58:24 +02:00
parent f20e174ee1
commit 50b24cd346
6 changed files with 22 additions and 17 deletions

View File

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