TF-985 Apply new design for list attachment in EmailView

This commit is contained in:
dab246
2022-10-12 17:02:10 +07:00
committed by Dat H. Pham
parent 0c287dbaa6
commit 36a90fbc63
11 changed files with 214 additions and 255 deletions
@@ -374,11 +374,11 @@ class AppLocalizations {
);
}
String count_attachment(int count) {
String titleHeaderAttachment(int count, String totalSize) {
return Intl.message(
'$count attachments',
name: 'count_attachment',
args: [count]
'$count Attachments ($totalSize):',
name: 'titleHeaderAttachment',
args: [count, totalSize]
);
}
@@ -821,10 +821,10 @@ class AppLocalizations {
name: 'attachments');
}
String get show_all {
String get showAll {
return Intl.message(
'Show all',
name: 'show_all');
name: 'showAll');
}
String get message_dialog_send_email_without_a_subject {