TF-657 Show notification message dialog when email has read receipt requested

This commit is contained in:
dab246
2022-10-19 16:22:12 +07:00
committed by Dat H. Pham
parent 02789d527f
commit 9a5fa29035
15 changed files with 254 additions and 115 deletions
@@ -2383,4 +2383,30 @@ class AppLocalizations {
name: 'appGridTittle'
);
}
String get titleReadReceiptRequestNotificationMessage {
return Intl.message(
'Read receipt request',
name: 'titleReadReceiptRequestNotificationMessage',
);
}
String get subTitleReadReceiptRequestNotificationMessage {
return Intl.message(
'The sender has requested a Read receipt for this email. Send Read receipt?',
name: 'subTitleReadReceiptRequestNotificationMessage',
);
}
String get yes {
return Intl.message(
'Yes',
name: 'yes');
}
String get no {
return Intl.message(
'No',
name: 'no');
}
}