TF-56 Implement upload single attachment

This commit is contained in:
dab246
2021-09-17 18:04:47 +07:00
committed by Dat H. Pham
parent 6aaa8f93d3
commit 39ca213285
23 changed files with 575 additions and 12 deletions
@@ -351,5 +351,47 @@ class AppLocalizations {
args: [count]
);
}
String get attach_file_prepare_text {
return Intl.message(
'Preparing to attach file...',
name: 'attach_file_prepare_text'
);
}
String get can_not_upload_this_file_as_attachments {
return Intl.message(
'Can not upload this file as attachments',
name: 'can_not_upload_this_file_as_attachments'
);
}
String get attachments_uploaded_successfully {
return Intl.message(
'Attachments uploaded successfully',
name: 'attachments_uploaded_successfully'
);
}
String get pick_attachments {
return Intl.message(
'Pick attachments',
name: 'pick_attachments'
);
}
String get photos_and_videos {
return Intl.message(
'Photos and Videos',
name: 'photos_and_videos',
);
}
String get browse {
return Intl.message(
'Browse',
name: 'browse',
);
}
}