diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-05-29 21:30:50 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2014-05-29 21:30:50 +0200 |
commit | b14564480edc68f7dc86eee59f8bd86220a6ecbc (patch) | |
tree | a3997ed21a2985c10b60f509626b62b39eac9279 | |
parent | 705242d3903034c148b4ad7c717d52be592f3e6d (diff) | |
parent | f7cc07ba41a297fba28d97106d07061cb62a2120 (diff) | |
download | nextcloud-server-b14564480edc68f7dc86eee59f8bd86220a6ecbc.tar.gz nextcloud-server-b14564480edc68f7dc86eee59f8bd86220a6ecbc.zip |
Merge pull request #8773 from owncloud/l10n-tipsy-delete
show delete hint text on hovering trash
-rw-r--r-- | apps/files/js/fileactions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 2edb45f544c..085195e961d 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -180,7 +180,7 @@ if (typeof trashBinApp !== 'undefined' && trashBinApp) { html = '<a href="#" original-title="' + t('files', 'Delete permanently') + '" class="action delete delete-icon" />'; } else { - html = '<a href="#" class="action delete delete-icon" />'; + html = '<a href="#" original-title="' + t('files', 'Delete') + '" class="action delete delete-icon" />'; } var element = $(html); element.data('action', actions['Delete']); |