TF-4029 Fix singular vs plural for attachments

This commit is contained in:
dab246
2025-09-19 09:58:02 +07:00
committed by Dat H. Pham
parent e75bdad5df
commit 993cdb235a
10 changed files with 95 additions and 11 deletions
@@ -392,6 +392,14 @@ class AppLocalizations {
);
}
String singularAttachmentTitleHeader(int count, String totalSize) {
return Intl.message(
'$count Attachment ($totalSize)',
name: 'singularAttachmentTitleHeader',
args: [count, totalSize]
);
}
String get attach_file_prepare_text {
return Intl.message(
'Preparing to attach file...',
@@ -853,6 +861,13 @@ class AppLocalizations {
name: 'attachments');
}
String get attachment {
return Intl.message(
'Attachment',
name: 'attachment',
);
}
String get showAll {
return Intl.message(
'Show all',