From 830310ad1d8b8fa52e879754cd9488530a16b47a Mon Sep 17 00:00:00 2001 From: rakekniven Date: Sat, 7 Oct 2017 10:38:03 +0200 Subject: Update file-upload.js Fixed tiny translation issues. Removed space before ellipsis. --- apps/files/js/file-upload.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index b86b42bdb9a..bf8116a6e1a 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -971,7 +971,7 @@ OC.Uploader.prototype = _.extend({ $('#uploadprogressbar').progressbar({value: 0}); $('#uploadprogressbar .ui-progressbar-value'). html('' - + t('files', 'Uploading …') + + t('files', 'Uploading…') + '' + t('files', '…') + ''); @@ -1023,7 +1023,7 @@ OC.Uploader.prototype = _.extend({ var h = moment.duration(smoothRemainingSeconds, "seconds").humanize(); if (!(smoothRemainingSeconds >= 0 && smoothRemainingSeconds < 14400)) { // show "Uploading ..." for durations longer than 4 hours - h = t('files', 'Uploading …'); + h = t('files', 'Uploading…'); } $('#uploadprogressbar .label .mobile').text(h); $('#uploadprogressbar .label .desktop').text(h); -- cgit v1.2.3