mirror of
https://github.com/nextcloud/server.git
synced 2026-03-27 04:43:20 -04:00
Do not concat translation string
This commit is contained in:
parent
d9f23c0578
commit
2e803fd2cd
1 changed files with 4 additions and 5 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue