TF-2802 Add calendar event accept interactor to single email controller

This commit is contained in:
DatDang
2024-04-17 10:15:29 +07:00
committed by Dat H. Pham
parent 8ed14711a3
commit 94d683c3c1
18 changed files with 222 additions and 99 deletions
@@ -3851,4 +3851,32 @@ class AppLocalizations {
name: 'noSuitableBrowserForOIDC'
);
}
String get eventReplyWasSentUnsuccessfully {
return Intl.message(
'Event reply was sent unsuccessfully!',
name: 'eventReplyWasSentUnsuccessfully',
);
}
String get youWillAttendThisMeeting {
return Intl.message(
'You will attend this meeting',
name: 'youWillAttendThisMeeting',
);
}
String get youWillNotAttendThisMeeting {
return Intl.message(
'You will not attend this meeting',
name: 'youWillNotAttendThisMeeting',
);
}
String get youMayAttendThisMeeting {
return Intl.message(
'You may attend this meeting',
name: 'youMayAttendThisMeeting',
);
}
}