From 6f0e0e56985449659861254b5fcb8b12dac9d311 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 25 Oct 2024 09:05:47 +0000 Subject: [PATCH] Bug 33736: (QA follow-up) Wrap more title strings for translation Signed-off-by: Katrin Fischer --- .../intranet-tmpl/prog/en/modules/circ/pendingbookings.tt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingbookings.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingbookings.tt index 84cc6294f1..0b8e603503 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingbookings.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingbookings.tt @@ -152,12 +152,12 @@ "order": [[ 7, "asc" ]], "columns": [{ "data": "booking_id", - "title": "Booking ID", + "title": _("Booking ID"), "visible": false }, { "data": "pickup_library.name", - "title": "Pickup library", + "title": _("Pickup library"), "searchable": true, "orderable": true, }, @@ -177,7 +177,7 @@ "title": _("Item"), "searchable": true, "orderable": true, - "defaultContent": "Any item", + "defaultContent": _("Any item"), "render": function(data,type,row,meta) { if ( row.item ) { return row.item.external_id + " (" + row.booking_id + ")"; @@ -231,7 +231,7 @@ { "data": "start_date", "name": "start_date", - "title": "Booking dates", + "title": _("Booking dates"), "type": "date", "searchable": false, "orderable": true, -- 2.39.5