@@ -4242,13 +4242,6 @@ class AppLocalizations {
|
||||
);
|
||||
}
|
||||
|
||||
String get sessionExpired {
|
||||
return Intl.message(
|
||||
'Session expired',
|
||||
name: 'sessionExpired',
|
||||
);
|
||||
}
|
||||
|
||||
String get sMimeGoodSignatureMessage {
|
||||
return Intl.message(
|
||||
'The authenticity of this message had been verified with SMime signature.',
|
||||
@@ -4436,14 +4429,6 @@ class AppLocalizations {
|
||||
);
|
||||
}
|
||||
|
||||
String get messageWarningDialogWhenExpiredOIDCTokenAndReconnection {
|
||||
return Intl.message(
|
||||
'Your session expired. We need to take you back to the login page in order to refresh it. You might want to save the email you are currently editing before we do so.',
|
||||
name: 'messageWarningDialogWhenExpiredOIDCTokenAndReconnection',
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
String get replyToList {
|
||||
return Intl.message(
|
||||
'Reply to list',
|
||||
@@ -4486,13 +4471,6 @@ class AppLocalizations {
|
||||
);
|
||||
}
|
||||
|
||||
String get saveAndRefresh {
|
||||
return Intl.message(
|
||||
'Save & refresh',
|
||||
name: 'saveAndRefresh',
|
||||
);
|
||||
}
|
||||
|
||||
String get thisHtmlAttachmentCannotBePreviewed {
|
||||
return Intl.message(
|
||||
'This html attachment cannot be previewed',
|
||||
|
||||
@@ -1,13 +1,8 @@
|
||||
|
||||
class TwakeAppManager {
|
||||
bool _hasComposer = false;
|
||||
bool _isSessionExpiresDialogOpened = false;
|
||||
|
||||
void setHasComposer(bool value) => _hasComposer = value;
|
||||
|
||||
bool get hasComposer => _hasComposer;
|
||||
|
||||
void setSessionExpiresDialogDisplayState(bool value) => _isSessionExpiresDialogOpened = value;
|
||||
|
||||
bool get isSessionExpiresDialogOpened => _isSessionExpiresDialogOpened;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user