TF-1866 Implement delete sending email in Sending Queue

(cherry picked from commit 0b45b10231fd4ec4fd7936c71de6cdcda0e92d02)
This commit is contained in:
dab246
2023-06-05 09:15:28 +07:00
committed by Dat Vu
parent a1e9be48ee
commit 94cd15d237
10 changed files with 377 additions and 47 deletions
@@ -2953,4 +2953,25 @@ class AppLocalizations {
name: 'messageHasBeenSentSuccessfully',
);
}
String get deleteOfflineEmail {
return Intl.message(
'Delete offline email',
name: 'deleteOfflineEmail'
);
}
String get messageDialogDeleteSendingEmail {
return Intl.message(
'Deleting an offline email will erase its content permanently. You won\'t be able to undo this action or recover the email from the Trash mailbox.',
name: 'messageDialogDeleteSendingEmail'
);
}
String get deleteSomeOfflineEmailSuccessfully {
return Intl.message(
'Delete some offline email successfully.',
name: 'deleteSomeOfflineEmailSuccessfully',
);
}
}