Merge pull request #4922 from nextcloud/verbose-uploadmenu-text

Use more verbose text for upload menu
This commit is contained in:
Morris Jobke 2017-05-17 10:48:52 -05:00 committed by GitHub
commit c2d8fe6336
1 changed files with 2 additions and 2 deletions

View File

@ -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'));