summaryrefslogtreecommitdiffstats
path: root/apps/files/js
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2017-05-16 21:06:05 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2017-05-16 21:06:05 +0200
commitb7a9ec0002352b09c389951c3773bee59b4355c0 (patch)
tree1a5e10b61d5a0b942cacf5edea233d469b0444ce /apps/files/js
parent2c9007616bc4c985c9e101c5f9c306f42cf211c5 (diff)
downloadnextcloud-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.js4
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'));