Merge pull request #13257 from owncloud/fixrmperm

l10n: delete permanently fix
This commit is contained in:
Thomas Müller 2015-01-11 19:28:32 +01:00
commit e51a76b92d
1 changed files with 2 additions and 2 deletions

View File

@ -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;
},