diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-05-09 16:12:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-09 16:12:58 +0200 |
commit | bb94888f3338d8b6f125a655dd51b520ab1f1ba2 (patch) | |
tree | 301ed73ca8f2d33c1542f22b7e9c031ddfee94ab | |
parent | fd2d026adfe026d0e6163ca1e6cc2f2177d0a26d (diff) | |
parent | 1f5d6ad23bbd30a784174a7256b120f53e6e7cd7 (diff) | |
download | nextcloud-server-bb94888f3338d8b6f125a655dd51b520ab1f1ba2.tar.gz nextcloud-server-bb94888f3338d8b6f125a655dd51b520ab1f1ba2.zip |
Merge pull request #15485 from nextcloud/backport/15478/stable15
[stable15] Update file-upload.js
-rw-r--r-- | apps/files/js/file-upload.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index 47d22447c91..4ae02df7d4b 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -779,8 +779,8 @@ OC.Uploader.prototype = _.extend({ return; } - $('#uploadprogressbar .label .mobile').text(t('core', '…')); - $('#uploadprogressbar .label .desktop').text(t('core', 'Processing files …')); + $('#uploadprogressbar .label .mobile').text(t('files', '…')); + $('#uploadprogressbar .label .desktop').text(t('files', 'Processing files …')); // Nothing is being uploaded at this point, and the pending operations // can not be cancelled, so the cancel button should be hidden. |