summaryrefslogtreecommitdiffstats
path: root/apps/encryption
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-04-17 14:26:58 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-04-17 14:26:58 +0200
commit2e803fd2cd2b17c32da4a76c8d97743edf20c65c (patch)
tree67a704045facad11c7c11c7388df736e4f8e0fa3 /apps/encryption
parentd9f23c0578c37bc9c61a7e2f8196027d6841fd75 (diff)
downloadnextcloud-server-2e803fd2cd2b17c32da4a76c8d97743edf20c65c.tar.gz
nextcloud-server-2e803fd2cd2b17c32da4a76c8d97743edf20c65c.zip
Do not concat translation string
Diffstat (limited to 'apps/encryption')
-rw-r--r--apps/encryption/controller/statuscontroller.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/apps/encryption/controller/statuscontroller.php b/apps/encryption/controller/statuscontroller.php
index d29cca03505..ef3d70a0b4c 100644
--- a/apps/encryption/controller/statuscontroller.php
+++ b/apps/encryption/controller/statuscontroller.php
@@ -65,15 +65,14 @@ class StatusController extends Controller {
case Session::INIT_EXECUTED:
$status = 'success';
$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 = 'success';
$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;
}