diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-08-23 16:22:11 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-08-23 16:22:11 +0200 |
commit | 57fd256b9af431ebdf6a333e9e3b04ef12e62727 (patch) | |
tree | f6e1cb3054a6ea38b838441ad94a04d0ec790739 /apps/files/js | |
parent | 591dda2fedcaa73f605bb336e2aece19229ec43c (diff) | |
download | nextcloud-server-57fd256b9af431ebdf6a333e9e3b04ef12e62727.tar.gz nextcloud-server-57fd256b9af431ebdf6a333e9e3b04ef12e62727.zip |
Replace ... with …
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/files/js')
-rw-r--r-- | apps/files/js/file-upload.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index 11365a310ed..1f99d561a13 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('<em class="label inner"><span class="desktop">' - + t('files', 'Uploading...') + + t('files', 'Uploading …') + '</span><span class="mobile">' - + t('files', '...') + + t('files', '…') + '</span></em>'); $('#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); |