TF-4004 Add no content rules creation page

This commit is contained in:
dab246
2025-09-05 14:37:31 +07:00
committed by Dat H. Pham
parent 0194594b9f
commit 9ab62f5451
13 changed files with 338 additions and 136 deletions
@@ -4957,4 +4957,39 @@ class AppLocalizations {
name: 'manageMyStorage',
);
}
String get addARule {
return Intl.message(
'Add a rule',
name: 'addARule',
);
}
String get nameOfRules {
return Intl.message(
'Name of Rules',
name: 'nameOfRules',
);
}
String get noRulesConfigured {
return Intl.message(
'No Rules Configured',
name: 'noRulesConfigured',
);
}
String get messageExplanationNoRulesConfigured {
return Intl.message(
'Start by creating your first rule to automate\n email management.',
name: 'messageExplanationNoRulesConfigured',
);
}
String get createMyFirstRule {
return Intl.message(
'Create My First Rule',
name: 'createMyFirstRule',
);
}
}