diff options
author | rakekniven <mark.ziegler@rakekniven.de> | 2020-04-04 23:09:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-04 23:09:12 +0200 |
commit | 531187ce58bdaea2fcf4328ecf29a3522a1dcfd2 (patch) | |
tree | bad58c2eb0f35549e08455bf9d0a23638774d4bf | |
parent | 4a292126e57fb07282075d9e3cc0b479d7f0c377 (diff) | |
download | nextcloud-server-531187ce58bdaea2fcf4328ecf29a3522a1dcfd2.tar.gz nextcloud-server-531187ce58bdaea2fcf4328ecf29a3522a1dcfd2.zip |
l10n: Triple dot to ellipsis.
Signed-off-by: rakekniven <mark.ziegler@rakekniven.de>
-rw-r--r-- | apps/files_sharing/js/files_drop.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/js/files_drop.js b/apps/files_sharing/js/files_drop.js index 9dff5a06f56..f3aa8f08916 100644 --- a/apps/files_sharing/js/files_drop.js +++ b/apps/files_sharing/js/files_drop.js @@ -95,7 +95,7 @@ }, add: function(e, data) { Drop.addFileToUpload(e, data); - $('#drop-upload-status').text(t('files_sharing', 'waiting...')); + $('#drop-upload-status').text(t('files_sharing', 'Waiting…')); //we return true to keep trying to upload next file even //if addFileToUpload did not like the privious one return true; |