summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-01-19 04:33:39 -0800
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-01-19 04:33:39 -0800
commitae244972cb8b1a6c8204236a75eaa0af70adaf6a (patch)
tree2378121db64ac0a13dc7c6e9d242afe082362c36
parenta17ca3a69aae0dde9aaf24f23aeffdd8658829f0 (diff)
parent02bd8dd45a66a8ed0323af56fcafd44df2babd7e (diff)
downloadnextcloud-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.js2
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")) ) {