TF-1190 Handle SetError when send message

This commit is contained in:
dab246
2023-02-03 11:03:57 +07:00
committed by Dat Vu
parent 4e576c346b
commit f41baf5250
12 changed files with 154 additions and 40 deletions
@@ -2719,4 +2719,18 @@ class AppLocalizations {
'Let\'s reduce some filters and try again',
name: 'reduceSomeFiltersAndTryAgain');
}
String get sendMessageFailureWithSetErrorTypeTooLarge {
return Intl.message(
'Failure to send your message, because it is too large.',
name: 'sendMessageFailureWithSetErrorTypeTooLarge',
);
}
String get sendMessageFailureWithSetErrorTypeOverQuota {
return Intl.message(
'Failure to send your message, because it is over quota.',
name: 'sendMessageFailureWithSetErrorTypeOverQuota',
);
}
}