TF-355 Fix the empty mailbox message not correct when filtering

This commit is contained in:
dab246
2023-01-27 17:11:44 +07:00
committed by Dat Vu
parent 16d360bb00
commit c51ece70f2
9 changed files with 265 additions and 83 deletions
+18 -7
View File
@@ -152,13 +152,6 @@ class AppLocalizations {
);
}
String get no_emails {
return Intl.message(
'No emails in this mailbox',
name: 'no_emails',
);
}
String get no_mail_selected {
return Intl.message(
'No email selected',
@@ -2708,4 +2701,22 @@ class AppLocalizations {
'required',
name: 'required');
}
String get noEmailInYourCurrentMailbox {
return Intl.message(
'We\'re sorry, there are no emails in your current mailbox',
name: 'noEmailInYourCurrentMailbox');
}
String get noEmailMatchYourCurrentFilter {
return Intl.message(
'We\'re sorry, there are no emails that match your current filter.',
name: 'noEmailMatchYourCurrentFilter');
}
String get reduceSomeFiltersAndTryAgain {
return Intl.message(
'Let\'s reduce some filters and try again',
name: 'reduceSomeFiltersAndTryAgain');
}
}