TF-2085 Add Dropdown select condition group

(cherry picked from commit ec96c105814346e5c9c18efa1643aaadeb1ca77e)
This commit is contained in:
hieubt
2023-09-20 12:35:09 +07:00
committed by Dat Vu
parent 675259a813
commit ebb72f3a6f
15 changed files with 423 additions and 153 deletions
@@ -3428,4 +3428,32 @@ class AppLocalizations {
name: 'sending',
);
}
String get all {
return Intl.message(
'All',
name: 'all',
);
}
String get any {
return Intl.message(
'Any',
name: 'any',
);
}
String get conditionTitleRulesFilterBeforeCombiner {
return Intl.message(
'If',
name: 'conditionTitleRulesFilterBeforeCombiner',
);
}
String get conditionTitleRulesFilterAfterCombiner {
return Intl.message(
'of the following conditions are met:',
name: 'conditionTitleRulesFilterAfterCombiner',
);
}
}