TF-2644 Display warning dialog when pick file exceeded maximum size in composer

This commit is contained in:
dab246
2024-03-01 00:36:46 +07:00
committed by Dat H. Pham
parent 0e57da59e1
commit 4350a2bd3a
11 changed files with 177 additions and 44 deletions
@@ -3916,4 +3916,18 @@ class AppLocalizations {
name: 'zoomOut',
);
}
String get messageWarningDialogWhenExceedMaximumFileSizeComposer {
return Intl.message(
'Your message is larger than the size generally accepted by third party email systems. If you confirm sending this mail, there is a risk that it gets rejected by your recipient system.',
name: 'messageWarningDialogWhenExceedMaximumFileSizeComposer',
);
}
String get continueAction {
return Intl.message(
'Continue',
name: 'continueAction',
);
}
}