feat(localization): add localized strings

This commit is contained in:
Salvatore Giordano
2021-08-24 09:46:29 +02:00
parent f0976f0aab
commit 02066e3bfb
7 changed files with 20 additions and 27 deletions
@@ -676,9 +676,9 @@ class DefaultTranslations implements Translations {
String get replyToMessageLabel => 'Reply to Message';
@override
String attachmentLimitExceedError(int limit) =>
'Attachment limit exceeded, limit: $limit';
String get slowModeOnLabel => 'Slow mode ON';
@override
String get slowModeOnLabel => 'Slow mode ON';
String attachmentLimitExceedError(int limit) => """
Attachment limit exceeded: it's not possible to add more than $limit attachments""";
}