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 /settings/js/personal.js | |
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 'settings/js/personal.js')
-rw-r--r-- | settings/js/personal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/js/personal.js b/settings/js/personal.js index dda0c98518f..c1f1ef7466b 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -310,7 +310,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) |