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
diff options
context:
space:
mode:
authorChristopher Ng <chrng8@gmail.com>2022-07-18 21:28:28 +0300
committerChristopher Ng <chrng8@gmail.com>2022-07-18 21:28:28 +0300
commit7d956784902f77f54735e418aae23eccae9d5eb3 (patch)
tree2f5fddc924e68e41fdd8f634dbc440d8915a5f75 /apps/files
parentd5437e2a30347d36d89be48ff9779bdacd6ef6ae (diff)
Use explicit name for new file/folder menuenh/a11y-new-file-menu
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/js/filelist.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 42afe792142..f87c670519d 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -3840,8 +3840,8 @@
return;
}
var $newButton = $(OCA.Files.Templates['template_addbutton']({
- addText: t('files', 'New'),
- iconClass: 'icon-add'
+ addText: t('files', 'New file/folder menu'),
+ iconClass: 'icon-add',
}));
$actionsContainer.prepend($newButton);