diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-05-16 21:06:05 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-05-16 21:06:05 +0200 |
commit | b7a9ec0002352b09c389951c3773bee59b4355c0 (patch) | |
tree | 1a5e10b61d5a0b942cacf5edea233d469b0444ce /apps/files/js | |
parent | 2c9007616bc4c985c9e101c5f9c306f42cf211c5 (diff) | |
download | nextcloud-server-b7a9ec0002352b09c389951c3773bee59b4355c0.tar.gz nextcloud-server-b7a9ec0002352b09c389951c3773bee59b4355c0.zip |
Use more verbose text for upload menu
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/files/js')
-rw-r--r-- | apps/files/js/newfilemenu.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/newfilemenu.js b/apps/files/js/newfilemenu.js index e4023c62342..9f3b7eb7332 100644 --- a/apps/files/js/newfilemenu.js +++ b/apps/files/js/newfilemenu.js @@ -65,7 +65,7 @@ this._menuItems = [{ id: 'folder', - displayName: t('files', 'Folder'), + displayName: t('files', 'New folder'), templateName: t('files', 'New folder'), iconClass: 'icon-folder', fileType: 'folder', @@ -223,7 +223,7 @@ render: function() { this.$el.html(this.template({ uploadMaxHumanFileSize: 'TODO', - uploadLabel: t('files', 'Upload'), + uploadLabel: t('files', 'Upload file'), items: this._menuItems })); OC.Util.scaleFixForIE8(this.$('.svg')); |