aboutsummaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2013-11-26 19:15:53 +0100
committerBjoern Schiessle <schiessle@owncloud.com>2013-11-26 19:15:53 +0100
commit7240d349da32af187b1920d8cf1cf67d81d268a1 (patch)
tree27e42cfe58e7de000ee4c0899a3c3afc8537079e /core/js
parentc7e1fe50c23771995bebf218c18deaf12ba628ca (diff)
parent1fef97f6a535cd79d0aea600634ec54c5f87bcea (diff)
downloadnextcloud-server-7240d349da32af187b1920d8cf1cf67d81d268a1.tar.gz
nextcloud-server-7240d349da32af187b1920d8cf1cf67d81d268a1.zip
Merge branch 'master' into encryption_initial_enc_indicator
Diffstat (limited to 'core/js')
-rw-r--r--core/js/update.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/update.js b/core/js/update.js
index 2c28e72f7cd..b1b7f6e37e8 100644
--- a/core/js/update.js
+++ b/core/js/update.js
@@ -5,7 +5,7 @@ $(document).ready(function () {
});
updateEventSource.listen('error', function(message) {
$('<span>').addClass('error').append(message).append('<br />').appendTo($('.update'));
- message = 'Please reload the page.';
+ message = t('core', 'Please reload the page.');
$('<span>').addClass('error').append(message).append('<br />').appendTo($('.update'));
updateEventSource.close();
});