Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-05-17 18:48:52 +0300
committerGitHub <noreply@github.com>2017-05-17 18:48:52 +0300
commitc2d8fe633654525ad64eb38aac3467c9efcfdf4d (patch)
tree28810eaf70b2ca94b88e89a4f7cce6a0da46c8d1 /apps
parent2ec616323b9ce83a8b8a0347b069991696198aeb (diff)
parentb7a9ec0002352b09c389951c3773bee59b4355c0 (diff)
Merge pull request #4922 from nextcloud/verbose-uploadmenu-text
Use more verbose text for upload menu
Diffstat (limited to 'apps')
-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'));