diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2013-01-18 22:35:26 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2013-01-18 22:35:26 +0100 |
commit | ad57db3e876b9fb7831ccd43a60815d88ef9a45f (patch) | |
tree | 18a37598ff3a175a5ada4f62d77c326be4688d16 /apps/files/js | |
parent | edf3572835ac5a6584fdde7ba7bb1faa64251e2d (diff) | |
download | nextcloud-server-ad57db3e876b9fb7831ccd43a60815d88ef9a45f.tar.gz nextcloud-server-ad57db3e876b9fb7831ccd43a60815d88ef9a45f.zip |
Make the message friendlier
Diffstat (limited to 'apps/files/js')
-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 3a4af6416e9..f8d276a079d 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -184,7 +184,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. Thanks for your patience.')); $('#notification').fadeIn(); // use special download URL if provided, e.g. for public shared files if ( (downloadURL = document.getElementById("downloadURL")) ) { |