TF-4075 Apply new design for attachments view

This commit is contained in:
dab246
2025-10-07 12:49:35 +07:00
committed by Dat H. Pham
parent 7057648b28
commit 6c7331960f
9 changed files with 171 additions and 119 deletions
+16 -15
View File
@@ -3419,14 +3419,6 @@ class AppLocalizations {
);
}
String moreAttachments(int count) {
return Intl.message(
'+ $count more',
name: 'moreAttachments',
args: [count]
);
}
String get attachmentList {
return Intl.message(
'Attachment list',
@@ -4099,13 +4091,6 @@ class AppLocalizations {
);
}
String showMore(int count) {
return Intl.message(
'Show more (+$count)',
name: 'showMore',
args: [count]);
}
String get showLess {
return Intl.message(
'Show less',
@@ -5160,4 +5145,20 @@ class AppLocalizations {
name: 'spamReportToggleDescription',
);
}
String showMoreAttachmentButton(int count) {
return Intl.message(
'Show +$count more',
name: 'showMoreAttachmentButton',
args: [count],
);
}
String hideAttachmentButton(int count) {
return Intl.message(
'Hide $count',
name: 'hideAttachmentButton',
args: [count],
);
}
}