diff options
author | Björn Schießle <schiessle@owncloud.com> | 2014-04-11 17:22:13 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2014-04-11 17:22:13 +0200 |
commit | 10dc1de644cab93d72daf506e645c113d53676a3 (patch) | |
tree | 0933b25982073386092f47271203cc1c832ccb82 /apps | |
parent | d67cba973e7037a7c9f48cc3aceec9eff26b4393 (diff) | |
parent | 286323f7a41a783543a646e7f8c949bb9a402159 (diff) | |
download | nextcloud-server-10dc1de644cab93d72daf506e645c113d53676a3.tar.gz nextcloud-server-10dc1de644cab93d72daf506e645c113d53676a3.zip |
Merge pull request #8069 from owncloud/fix-localization-issues-with-file-encrypt-app
Fix some localization issues with file encryption/decryption strings
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/js/files.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 5b58cdcb1ba..ac10191618b 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -131,15 +131,15 @@ var Files = { var encryptedFiles = $('#encryptedFiles').val(); var initStatus = $('#encryptionInitStatus').val(); if (initStatus === '0') { // enc not initialized, but should be - OC.Notification.show(t('files_encryption', 'Encryption App is enabled but your keys are not initialized, please log-out and log-in again')); + OC.Notification.show(t('files', 'Encryption App is enabled but your keys are not initialized, please log-out and log-in again')); return; } if (initStatus === '1') { // encryption tried to init but failed - 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.')); + OC.Notification.showHtml(t('files', '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') { - OC.Notification.show(t('files_encryption', 'Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files.')); + OC.Notification.show(t('files', 'Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files.')); return; } }, |