TF-2682 Add alwaysReadReceipt to account menu item model

This commit is contained in:
DatDang
2024-03-08 10:05:02 +07:00
committed by Dat H. Pham
parent 24c6141f76
commit 7a56234e5d
3 changed files with 44 additions and 1 deletions
@@ -3833,4 +3833,22 @@ class AppLocalizations {
name: 'printingFailed'
);
}
String get emailReadReceipts {
return Intl.message(
'Email read receipts',
name: 'emailReadReceipts');
}
String get emailReadReceiptsSettingExplanation {
return Intl.message(
'Read receipts are notifications that can be sent to and from your users to verify that mail has been read.',
name: 'emailReadReceiptsSettingExplanation');
}
String get emailReadReceiptsToggleDescription {
return Intl.message(
'Always request read receipts with outgoing messages',
name: 'emailReadReceiptsToggleDescription');
}
}