aboutsummaryrefslogtreecommitdiffstats
path: root/settings/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 /settings/js
parent2124eaba9296ebd9c491d71a266407d6b31cbd30 (diff)
downloadnextcloud-server-286323f7a41a783543a646e7f8c949bb9a402159.tar.gz
nextcloud-server-286323f7a41a783543a646e7f8c949bb9a402159.zip
Fix some localization issues with file encryption/decription strings
Diffstat (limited to 'settings/js')
-rw-r--r--settings/js/personal.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/js/personal.js b/settings/js/personal.js
index f502037cfda..b659d1f1d39 100644
--- a/settings/js/personal.js
+++ b/settings/js/personal.js
@@ -313,7 +313,7 @@ OC.Encryption.msg={
startDecrypting:function(selector){
var spinner = '<img src="'+ OC.imagePath('core', 'loading-small.gif') +'">';
$(selector)
- .html( t('files_encryption', 'Decrypting files... Please wait, this can take some time.') + ' ' + spinner )
+ .html( t('settings', 'Decrypting files... Please wait, this can take some time.') + ' ' + spinner )
.removeClass('success')
.removeClass('error')
.stop(true, true)