diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-01-19 04:33:39 -0800 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-01-19 04:33:39 -0800 |
commit | ae244972cb8b1a6c8204236a75eaa0af70adaf6a (patch) | |
tree | 2378121db64ac0a13dc7c6e9d242afe082362c36 | |
parent | a17ca3a69aae0dde9aaf24f23aeffdd8658829f0 (diff) | |
parent | 02bd8dd45a66a8ed0323af56fcafd44df2babd7e (diff) | |
download | nextcloud-server-ae244972cb8b1a6c8204236a75eaa0af70adaf6a.tar.gz nextcloud-server-ae244972cb8b1a6c8204236a75eaa0af70adaf6a.zip |
Merge pull request #1228 from owncloud/generating_zip_message
Make the ZIP download information friendlier
-rw-r--r-- | apps/files/js/files.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 0488062dbca..c1abe205151 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -201,7 +201,7 @@ $(document).ready(function() { $('.download').click('click',function(event) { var files=getSelectedFiles('name').join(';'); var dir=$('#dir').val()||'/'; - $('#notification').text(t('files','generating ZIP-file, it may take some time.')); + $('#notification').text(t('files','Your download is being prepared. This might take some time if the files are big.')); $('#notification').fadeIn(); // use special download URL if provided, e.g. for public shared files if ( (downloadURL = document.getElementById("downloadURL")) ) { |