add message localizations

This commit is contained in:
MateusHBR
2022-04-18 14:27:21 -03:00
parent 8bdcc6b7f0
commit b5e99e505d
10 changed files with 33 additions and 0 deletions
@@ -311,6 +311,9 @@ abstract class Translations {
/// The label for "Reply to message"
String get replyToMessageLabel;
/// The label for "View library"
String get viewLibrary;
/// Label for "Attachment limit exceeded:
/// it's not possible to add more than $limit attachments"
String attachmentLimitExceedError(int limit);
@@ -682,6 +685,9 @@ class DefaultTranslations implements Translations {
@override
String get slowModeOnLabel => 'Slow mode ON';
@override
String get viewLibrary => 'View library';
@override
String attachmentLimitExceedError(int limit) => """
Attachment limit exceeded: it's not possible to add more than $limit attachments""";