TF-4004 Apply new design for create rule view on web

This commit is contained in:
dab246
2025-09-08 14:30:17 +07:00
committed by Dat H. Pham
parent dc3b4d46dd
commit 8c3c7b1feb
24 changed files with 819 additions and 764 deletions
@@ -4985,4 +4985,53 @@ class AppLocalizations {
name: 'createMyFirstRule',
);
}
String get createANewRule {
return Intl.message(
'Create a New Rule',
name: 'createANewRule',
);
}
String get ruleName {
return Intl.message(
'Rule Name',
name: 'ruleName',
);
}
String get condition {
return Intl.message(
'Condition',
name: 'condition',
);
}
String get addACondition {
return Intl.message(
'Add a condition',
name: 'addACondition',
);
}
String get actionsToPerform {
return Intl.message(
'Actions to Perform',
name: 'actionsToPerform',
);
}
String get addAnAction {
return Intl.message(
'Add an action',
name: 'addAnAction',
);
}
String get createRule {
return Intl.message(
'Create Rule',
name: 'createRule',
);
}
}