From: Morris Jobke Date: Wed, 23 Aug 2017 14:22:11 +0000 (+0200) Subject: Replace ... with … X-Git-Tag: v12.0.4RC1~48^2~3 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=293a3d578f19fc36811657a600209ad7791c9366;p=nextcloud-server.git Replace ... with … Signed-off-by: Morris Jobke --- diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index 85284a63381..b86b42bdb9a 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -971,9 +971,9 @@ OC.Uploader.prototype = _.extend({ $('#uploadprogressbar').progressbar({value: 0}); $('#uploadprogressbar .ui-progressbar-value'). html('' - + t('files', 'Uploading...') + + t('files', 'Uploading …') + '' - + t('files', '...') + + t('files', '…') + ''); $('#uploadprogressbar').tooltip({placement: 'bottom'}); self._showProgressBar(); @@ -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 d66f12f4aff..b8358397d41 100644 --- a/apps/files/templates/list.php +++ b/apps/files/templates/list.php @@ -2,7 +2,7 @@