TF-4009 Display a attachment reminder warning modal

This commit is contained in:
dab246
2025-09-11 12:42:53 +07:00
committed by Dat H. Pham
parent 89a8247119
commit 1f83484998
6 changed files with 374 additions and 10 deletions
@@ -5102,4 +5102,26 @@ class AppLocalizations {
name: 'createFolder',
);
}
String get sendMessage {
return Intl.message(
'Send message',
name: 'sendMessage',
);
}
String get attachmentReminderModalTitle {
return Intl.message(
'Forgot to attach a file?',
name: 'attachmentReminderModalTitle',
);
}
String attachmentReminderModalMessage(String keyword) {
return Intl.message(
'You wrote $keyword in your message but did not add any attachments. Do you still want to send?',
name: 'attachmentReminderModalMessage',
args: [keyword],
);
}
}