diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-01-11 19:28:32 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-01-11 19:28:32 +0100 |
commit | e51a76b92d1ad48cccd9efdcd6e25977da154a6d (patch) | |
tree | 29d7f7cdde09c5da235d5f5dad948356039c5578 | |
parent | 31a1a6e60b6c7892dd32d3c4d54e887730c24704 (diff) | |
parent | d8adc76125857374de1f41bd09becefc078d70cb (diff) | |
download | nextcloud-server-e51a76b92d1ad48cccd9efdcd6e25977da154a6d.tar.gz nextcloud-server-e51a76b92d1ad48cccd9efdcd6e25977da154a6d.zip |
Merge pull request #13257 from owncloud/fixrmperm
l10n: delete permanently fix
-rw-r--r-- | apps/files_trashbin/js/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_trashbin/js/app.js b/apps/files_trashbin/js/app.js index c5de08d5922..315349d293c 100644 --- a/apps/files_trashbin/js/app.js +++ b/apps/files_trashbin/js/app.js @@ -67,8 +67,8 @@ OCA.Trashbin.App = { }, render: function(actionSpec, isDefault, context) { var $actionLink = fileActions._makeActionLink(actionSpec, context); - $actionLink.attr('original-title', t('files', 'Delete permanently')); - $actionLink.children('img').attr('alt', t('files', 'Delete permanently')); + $actionLink.attr('original-title', t('files_trashbin', 'Delete permanently')); + $actionLink.children('img').attr('alt', t('files_trashbin', 'Delete permanently')); context.$file.find('td:last').append($actionLink); return $actionLink; }, |