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:
Pasi Kallinen 2018-02-26 11:10:10 +02:00 committed by Jonathan Druart
parent 5db35e919a
commit df8bac232e

View file

@ -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 +