@@ -, +, @@ string _("This attribute will be only applied to the patron\'s category") - Create a borrower attribute with a "Category" defined - Go to Tools / Batch patrons modification - Enter a cardnumber and submit - Next to "Attribute", select the borrower attribute you created --- .../prog/en/modules/tools/modborrowers.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt @@ -64,7 +64,7 @@ var information_category_node = $(select_attr).parent().parent().find('span.information_category'); information_category_node.html(""); if ( category.length > 0 ) { - information_category_node.html(_("This attribute will be only applied to the patron\'s category") +' "' + category + '"'); + information_category_node.html(_("This attribute will be only applied to the patron's category") +' "' + category + '"'); } if ( type == 'select' ) { var options = ''; --