diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js
index 8a407b88a01..3ad0ab04fb9 100644
--- a/apps/files_trashbin/js/trash.js
+++ b/apps/files_trashbin/js/trash.js
@@ -2,9 +2,9 @@
$(document).ready(function() {
if (typeof FileActions !== 'undefined') {
- FileActions.register('all', 'Undelete', OC.PERMISSION_READ, OC.imagePath('core', 'actions/undelete.png'), function(filename) {
+ FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/undelete.png'), function(filename) {
var tr=$('tr').filterAttr('data-file', filename);
- var spinner = '
';
+ var spinner = '
';
var undeleteAction = $('tr').filterAttr('data-file',filename).children("td.date");
undeleteAction[0].innerHTML = undeleteAction[0].innerHTML+spinner;
$.post(OC.filePath('files_trashbin','ajax','undelete.php'),
diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php
index 104d93ce496..c3e51b4becd 100644
--- a/apps/files_trashbin/templates/index.php
+++ b/apps/files_trashbin/templates/index.php
@@ -17,9 +17,9 @@
t( 'Name' ); ?>
-
" />
- t('Undelete')?>
+ t('Restore')?>