TF-4029 Fix singular vs plural for attachments
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user