From 86a76da515213a2959f3b86b14677f8b6ce02c6b Mon Sep 17 00:00:00 2001 From: hieubt Date: Tue, 17 Oct 2023 13:36:30 +0700 Subject: [PATCH] TF-1801 Add new attachment design text (cherry picked from commit 20350c981fe4c2a88e6ffc4201eb389ebeb0b27a) --- lib/l10n/intl_messages.arb | 28 ++++++++++++++++++ lib/main/localizations/app_localizations.dart | 29 +++++++++++++++++++ 2 files changed, 57 insertions(+) diff --git a/lib/l10n/intl_messages.arb b/lib/l10n/intl_messages.arb index db60351b7..155ed6507 100644 --- a/lib/l10n/intl_messages.arb +++ b/lib/l10n/intl_messages.arb @@ -3275,5 +3275,33 @@ "type": "text", "placeholders_order": [], "placeholders": {} + }, + "moreAttachments": "+ {count} more", + "@moreAttachments": { + "type": "text", + "placeholders_order": [ + "count" + ], + "placeholders": { + "count": {} + } + }, + "attachmentList": "Attachment list", + "@attachmentList": { + "type": "text", + "placeholders_order": [], + "placeholders": {} + }, + "files": "files", + "@files": { + "type": "text", + "placeholders_order": [], + "placeholders": {} + }, + "downloadAll": "Download all", + "@downloadAll": { + "type": "text", + "placeholders_order": [], + "placeholders": {} } } \ No newline at end of file diff --git a/lib/main/localizations/app_localizations.dart b/lib/main/localizations/app_localizations.dart index 8fae12bde..260778b62 100644 --- a/lib/main/localizations/app_localizations.dart +++ b/lib/main/localizations/app_localizations.dart @@ -3382,4 +3382,33 @@ class AppLocalizations { name: 'bannerMessageSendingQueueViewOnIOS' ); } + + String moreAttachments(int count) { + return Intl.message( + '+ $count more', + name: 'moreAttachments', + args: [count] + ); + } + + String get attachmentList { + return Intl.message( + 'Attachment list', + name: 'attachmentList', + ); + } + + String get files { + return Intl.message( + 'files', + name: 'files', + ); + } + + String get downloadAll { + return Intl.message( + 'Download all', + name: 'downloadAll', + ); + } } \ No newline at end of file