diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-10-25 00:11:05 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-10-25 00:12:41 +0200 |
commit | 7d71b547151896276a682ab1c4fe96658023935b (patch) | |
tree | 038571776c3dc45d0480b6ae0bfe1ab4ec04bc60 | |
parent | 5d84daa167ca7d631175f54fc949d3f78e854978 (diff) | |
download | nextcloud-server-7d71b547151896276a682ab1c4fe96658023935b.tar.gz nextcloud-server-7d71b547151896276a682ab1c4fe96658023935b.zip |
Add space between ellipsis and word
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
-rw-r--r-- | apps/files/js/file-upload.js | 4 | ||||
-rw-r--r-- | 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 bf8116a6e1a..b86b42bdb9a 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('<em class="label inner"><span class="desktop">' - + t('files', 'Uploading…') + + t('files', 'Uploading …') + '</span><span class="mobile">' + t('files', '…') + '</span></em>'); @@ -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 761a67be6a2..02d2b163422 100644 --- a/apps/files/templates/list.php +++ b/apps/files/templates/list.php @@ -2,7 +2,7 @@ <div class="actions creatable hidden"> <div id="uploadprogresswrapper"> <div id="uploadprogressbar"> - <em class="label outer" style="display:none"><span class="desktop"><?php p($l->t('Uploading…'));?></span><span class="mobile"><?php p($l->t('…'));?></span></em> + <em class="label outer" style="display:none"><span class="desktop"><?php p($l->t('Uploading …'));?></span><span class="mobile"><?php p($l->t('…'));?></span></em> </div> <button class="stop icon-close" style="display:none"> <span class="hidden-visually"><?php p($l->t('Cancel upload')) ?></span> |