]> source.dussan.org Git - nextcloud-server.git/commitdiff
Replace ... with …
authorMorris Jobke <hey@morrisjobke.de>
Wed, 23 Aug 2017 14:22:11 +0000 (16:22 +0200)
committerMorris Jobke <hey@morrisjobke.de>
Tue, 24 Oct 2017 15:34:31 +0000 (17:34 +0200)
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
apps/files/js/file-upload.js
apps/files/templates/list.php

index 85284a63381143536977e4181d24875434d9f7cb..b86b42bdb9a44ffe712271dfc75c5dd4a023d5c2 100644 (file)
@@ -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);
index d66f12f4aff07671b2fdd5127541b26ae2a5f019..b8358397d4186b4b99bd2f099b4d2022822a75fb 100644 (file)
@@ -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>
                                <input type="button" class="stop icon-close" style="display:none" value="" />
                        </div>