Merge pull request #6065 from owncloud/l10n-update

Translate reload message after update
This commit is contained in:
Thomas Müller 2013-11-26 07:45:22 -08:00
commit d9a98b126e
1 changed files with 1 additions and 1 deletions

View File

@ -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();
});