TF-4004 Add Preview/Hide condition, action of rule filter

This commit is contained in:
dab246
2025-09-09 04:15:31 +07:00
committed by Dat H. Pham
parent a0123c41b0
commit 5983fb66ff
22 changed files with 685 additions and 393 deletions
@@ -5034,4 +5034,29 @@ class AppLocalizations {
name: 'createRule',
);
}
String get preview {
return Intl.message(
'Preview',
name: 'preview',
);
}
String ruleFilterConditionPreviewMessage(String conditionCombinerName, String conditionValue) {
return Intl.message(
'$conditionCombinerName of the conditions: $conditionValue',
name: 'ruleFilterConditionPreviewMessage',
args: [
conditionCombinerName,
conditionValue,
],
);
}
String get actions {
return Intl.message(
'Actions',
name: 'actions',
);
}
}