diff options
Diffstat (limited to 'apps/encryption/lib/Controller/StatusController.php')
-rw-r--r-- | apps/encryption/lib/Controller/StatusController.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/encryption/lib/Controller/StatusController.php b/apps/encryption/lib/Controller/StatusController.php index a508c3c6b72..6882475e972 100644 --- a/apps/encryption/lib/Controller/StatusController.php +++ b/apps/encryption/lib/Controller/StatusController.php @@ -73,18 +73,18 @@ class StatusController extends Controller { case Session::INIT_EXECUTED: $status = 'interactionNeeded'; $message = (string)$this->l->t( - 'Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.' + 'Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files.' ); break; case Session::NOT_INITIALIZED: $status = 'interactionNeeded'; $message = (string)$this->l->t( - 'Encryption App is enabled but your keys are not initialized, please log-out and log-in again' + 'Encryption app is enabled but your keys are not initialized, please log-out and log-in again' ); break; case Session::INIT_SUCCESSFUL: $status = 'success'; - $message = (string)$this->l->t('Encryption App is enabled and ready'); + $message = (string)$this->l->t('Encryption app is enabled and ready'); } return new DataResponse( |