TF-2613 Invoke show warning dialog when add other domain

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2024-02-29 10:29:41 +07:00
committed by Dat H. Pham
parent 8156d91634
commit 3480d5e235
4 changed files with 127 additions and 23 deletions
@@ -3787,4 +3787,17 @@ class AppLocalizations {
name: 'loadMore',
);
}
String get doYouWantToProceed {
return Intl.message(
'Do you want to proceed?',
name: 'doYouWantToProceed');
}
String get messageWarningDialogForForwardsToOtherDomains {
return Intl.message(
'You are redirecting emails to another domain. This could be a security threat or considered illegal data extraction.',
name: 'messageWarningDialogForForwardsToOtherDomains'
);
}
}