Bug 20295: Allow translating link title in ILL module
Allow translating "View borrower details" link title in the ILL module. Signed-off-by: Pasi Kallinen <pasi.kallinen@joensuu.fi> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
5db35e919a
commit
df8bac232e
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@
|
|||
|
||||
// Our 'render' function for borrowerlink
|
||||
var createPatronLink = function(data, type, row) {
|
||||
return '<a title="View borrower details" ' +
|
||||
return '<a title="' + _("View borrower details") + '" ' +
|
||||
'href="/cgi-bin/koha/members/moremember.pl?' +
|
||||
'borrowernumber='+row.borrowernumber+'">' +
|
||||
row.patron_firstname + ' ' + row.patron_surname +
|
||||
|
|
Loading…
Reference in a new issue