feat(ui, localization): Move attachment limit exceeded error to translations

Signed-off-by: xsahil03x <[email protected]>
This commit is contained in:
Sahil Kumar
2021-08-11 18:14:43 +05:30
committed by xsahil03x
parent 9dba5a61d2
commit 0b33c258f5
10 changed files with 50 additions and 4 deletions
@@ -304,6 +304,8 @@ abstract class Translations {
/// The label for "Reply to message"
String get replyToMessageLabel;
String attachmentLimitExceedError(int limit);
}
/// Default implementation of Translation strings for the stream chat widgets
@@ -664,4 +666,8 @@ class DefaultTranslations implements Translations {
@override
String get replyToMessageLabel => 'Reply to Message';
@override
String attachmentLimitExceedError(int limit) =>
'Attachment limit exceeded, limit: $limit';
}