@@ -, +, @@ translatability - Makes new message in the holds tables in the patron account translatable - Unbolds the note in the holds table for the record --- koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc | 1 + koha-tmpl/intranet-tmpl/prog/en/js/holds.js | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc @@ -21,6 +21,7 @@ var RENEWALS_REMAINING = _("%s of %s renewals remaining"); var HOLD_IS_SUSPENDED = _("Hold is suspended"); var UNTIL = _("until %s"); + var NEXT_AVAILABLE_ITYPE = _("Next available %s item"); var ITEM_IS_WAITING = _("Item is waiting"); var ITEM_IS_WAITING_HERE = _("Item is waiting here"); var AT = _("at %s"); --- a/koha-tmpl/intranet-tmpl/prog/en/js/holds.js +++ a/koha-tmpl/intranet-tmpl/prog/en/js/holds.js @@ -63,7 +63,7 @@ $(document).ready(function() { } if ( oObj.itemtype_limit ) { - data += _(" Next available %s item").format( oObj.itemtype_limit ); + data += NEXT_AVAILABLE_ITYPE.format( oObj.itemtype_limit ); } if ( oObj.barcode ) { --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt @@ -814,7 +814,7 @@ function checkMultiHold() { [% ELSE %] [% IF reserveloo.itemtype %] - Next available [% ItemTypes.GetDescription( reserveloo.itemtype ) %] item + Next available [% ItemTypes.GetDescription( reserveloo.itemtype ) %] item [% ELSE %] Next available [% END %] --