summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2013-10-04 11:11:24 +0200
committerVincent Petry <pvince81@owncloud.com>2013-10-04 11:11:24 +0200
commit9d2595a7c59048fc6ed3777a888e03d43a8f03f9 (patch)
tree9c85fa63cfc43bf89bc1bf96fd7fb811c66a7c67 /apps
parentb7c3af11bf22f3d8cfb227f1eca134940dc26469 (diff)
downloadnextcloud-server-9d2595a7c59048fc6ed3777a888e03d43a8f03f9.tar.gz
nextcloud-server-9d2595a7c59048fc6ed3777a888e03d43a8f03f9.zip
Shortened notification message that was too long
The message for invalid private key was too long and didn't fit in the notification box. This fix reduces the message to fit properly by removing the extra information.
Diffstat (limited to 'apps')
-rw-r--r--apps/files/js/files.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js
index 55ee89e17a2..899bc6469e5 100644
--- a/apps/files/js/files.js
+++ b/apps/files/js/files.js
@@ -69,7 +69,7 @@ Files={
return;
}
if (initStatus === '1') { // encryption tried to init but failed
- OC.Notification.show(t('files_encryption', '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.'));
+ OC.Notification.showHtml(t('files_encryption', 'Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.'));
return;
}
if (encryptedFiles === '1') {