TF-802 Show message when enable/disable vacation responder

This commit is contained in:
dab246
2022-08-18 17:04:55 +07:00
committed by Dat H. Pham
parent 20a2e94b8e
commit 593bf511e6
11 changed files with 166 additions and 29 deletions
@@ -2092,4 +2092,18 @@ class AppLocalizations {
name: 'yourVacationResponderIsDisabledSuccessfully',
);
}
String messageEnableVacationResponderAutomatically(String startDate) {
return Intl.message(
'Your vacation responder will be activated on $startDate',
name: 'messageEnableVacationResponderAutomatically',
args: [startDate]);
}
String messageDisableVacationResponderAutomatically(String endDate) {
return Intl.message(
'Your vacation responder stopped on $endDate',
name: 'messageDisableVacationResponderAutomatically',
args: [endDate]);
}
}