[Pkg-owncloud-commits] [owncloud] 36/165: Do not concat translation string

David Prévot taffit at moszumanska.debian.org
Thu Apr 23 04:06:20 UTC 2015


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch stable8
in repository owncloud.

commit 2e803fd2cd2b17c32da4a76c8d97743edf20c65c
Author: Thomas Müller <thomas.mueller at tmit.eu>
Date:   Fri Apr 17 14:26:58 2015 +0200

    Do not concat translation string
---
 apps/encryption/controller/statuscontroller.php | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/apps/encryption/controller/statuscontroller.php b/apps/encryption/controller/statuscontroller.php
index d29cca0..ef3d70a 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;
 		}
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git



More information about the Pkg-owncloud-commits mailing list