summaryrefslogtreecommitdiffstats
path: root/apps/files/js/files.js
diff options
context:
space:
mode:
authorVolkan Gezer <volkangezer@gmail.com>2014-04-05 19:28:53 +0200
committerVolkan Gezer <volkangezer@gmail.com>2014-04-05 19:28:53 +0200
commit286323f7a41a783543a646e7f8c949bb9a402159 (patch)
treeec5f69e7b9b06b46a9682f7d2ccac2049d9ac1b6 /apps/files/js/files.js
parent2124eaba9296ebd9c491d71a266407d6b31cbd30 (diff)
downloadnextcloud-server-286323f7a41a783543a646e7f8c949bb9a402159.tar.gz
nextcloud-server-286323f7a41a783543a646e7f8c949bb9a402159.zip
Fix some localization issues with file encryption/decription strings
Diffstat (limited to 'apps/files/js/files.js')
-rw-r--r--apps/files/js/files.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js
index ceb096f0941..206fa561251 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;
}
},