summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrakekniven <mark.ziegler@rakekniven.de>2017-10-07 10:38:03 +0200
committerMorris Jobke <hey@morrisjobke.de>2017-10-24 17:34:49 +0200
commit59fc88650c1a5789d5d7e17db191705cb27bad35 (patch)
tree68e64d21389da4f34bff2da69225ef61fe78cb2d
parent293a3d578f19fc36811657a600209ad7791c9366 (diff)
downloadnextcloud-server-59fc88650c1a5789d5d7e17db191705cb27bad35.tar.gz
nextcloud-server-59fc88650c1a5789d5d7e17db191705cb27bad35.zip
Update file-upload.js
Fixed tiny translation issues. Removed space before ellipsis.
-rw-r--r--apps/files/js/file-upload.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js
index b86b42bdb9a..bf8116a6e1a 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);