]> source.dussan.org Git - nextcloud-server.git/commitdiff
Do not concat translation string
authorThomas Müller <thomas.mueller@tmit.eu>
Fri, 17 Apr 2015 12:26:58 +0000 (14:26 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Fri, 17 Apr 2015 12:26:58 +0000 (14:26 +0200)
apps/encryption/controller/statuscontroller.php

index d29cca03505f1f096a36f11df2e32e5cc367eda8..ef3d70a0b4c59e265206bb9d9101cbbda97aa799 100644 (file)
@@ -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;
                }