summaryrefslogtreecommitdiffstats
path: root/apps/files_encryption
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2013-10-30 02:44:54 -0700
committerVincent Petry <pvince81@owncloud.com>2013-10-30 02:44:54 -0700
commit4c7ef852524ef41c23446e540e7e531fb1eca8b0 (patch)
treef8056a548cffaec72a3330c8e05ef5f8a186a0e9 /apps/files_encryption
parentde342a5ac7bade9416c51bd925504e52c1595334 (diff)
parentffb0e14d7b1a900199af6bff93fbee6b8a4340b9 (diff)
downloadnextcloud-server-4c7ef852524ef41c23446e540e7e531fb1eca8b0.tar.gz
nextcloud-server-4c7ef852524ef41c23446e540e7e531fb1eca8b0.zip
Merge pull request #5616 from owncloud/fixing-l10n-master
Fixing l10n master
Diffstat (limited to 'apps/files_encryption')
-rw-r--r--apps/files_encryption/files/error.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php
index 61574edf509..317cea05a12 100644
--- a/apps/files_encryption/files/error.php
+++ b/apps/files_encryption/files/error.php
@@ -12,7 +12,8 @@ if (!isset($_)) { //also provide standalone error page
$errorMsg = $l->t('Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.');
break;
case \OCA\Encryption\Crypt::ENCRYPTION_PRIVATE_KEY_NOT_VALID_ERROR:
- $errorMsg = $l->t('Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.');
+ $theme = new OC_Defaults();
+ $errorMsg = $l->t('Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.', array($theme->getName()));
break;
case \OCA\Encryption\Crypt::ENCRYPTION_NO_SHARE_KEY_FOUND:
$errorMsg = $l->t('Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.');