From 7d71b547151896276a682ab1c4fe96658023935b Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 25 Oct 2017 00:11:05 +0200 Subject: [PATCH] Add space between ellipsis and word Signed-off-by: Morris Jobke --- apps/files/js/file-upload.js | 4 ++-- apps/files/templates/list.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index bf8116a6e1..b86b42bdb9 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); diff --git a/apps/files/templates/list.php b/apps/files/templates/list.php index 761a67be6a..02d2b16342 100644 --- a/apps/files/templates/list.php +++ b/apps/files/templates/list.php @@ -2,7 +2,7 @@