TF-78 Implement mark as read & unread for multiple selected email in threads

This commit is contained in:
dab246
2021-09-15 11:02:56 +07:00
committed by Dat H. Pham
parent 161eed5d72
commit e7bf7f782e
11 changed files with 262 additions and 5 deletions
@@ -277,5 +277,28 @@ class AppLocalizations {
name: 'move_to_spam',
);
}
String marked_multiple_item_as_read(int count) {
return Intl.message(
'Marked $count item as read',
name: 'marked_multiple_item_as_read',
args: [count]
);
}
String marked_multiple_item_as_unread(int count) {
return Intl.message(
'Marked $count item as unread',
name: 'marked_multiple_item_as_unread',
args: [count]
);
}
String get an_error_occurred {
return Intl.message(
'Error! An error occurred. Please try again later.',
name: 'an_error_occurred',
);
}
}