TF-832 Implement delete an recipient in forwarding

This commit is contained in:
dab246
2022-08-19 11:58:26 +07:00
committed by Dat H. Pham
parent d4ed43a65f
commit 7da79592c8
6 changed files with 145 additions and 25 deletions
@@ -2106,4 +2106,24 @@ class AppLocalizations {
name: 'messageDisableVacationResponderAutomatically',
args: [endDate]);
}
String messageConfirmationDialogDeleteRecipientForward(String emailAddress) {
return Intl.message(
'Do you want to delete email $emailAddress?',
name: 'messageConfirmationDialogDeleteRecipientForward',
args: [emailAddress]
);
}
String get deleteRecipient {
return Intl.message(
'Delete recipient',
name: 'deleteRecipient');
}
String get toastMessageDeleteRecipientSuccessfully {
return Intl.message(
'The email has been removed from the recipient list.',
name: 'toastMessageDeleteRecipientSuccessfully');
}
}