TF-4075 Apply new design for attachments view
This commit is contained in:
@@ -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],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user