From 0520aff74ef387e06df77d670f18e375eda6feb9 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 21 Jun 2024 14:07:07 +0100 Subject: [PATCH] Bug 37047: (QA follow-up) Fix translations --- .../intranet-tmpl/prog/js/tables/bookings.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/tables/bookings.js b/koha-tmpl/intranet-tmpl/prog/js/tables/bookings.js index a42a343677d..46776432bfd 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/tables/bookings.js +++ b/koha-tmpl/intranet-tmpl/prog/js/tables/bookings.js @@ -16,11 +16,11 @@ $(document).ready(function () { columns: [ { data: "booking_id", - title: _("Booking ID"), + title: __("Booking ID"), }, { data: "biblio.title", - title: _("Title"), + title: __("Title"), searchable: true, orderable: true, render: function (data, type, row, meta) { @@ -31,10 +31,10 @@ $(document).ready(function () { }, { data: "item.external_id", - title: _("Item"), + title: __("Item"), searchable: true, orderable: true, - defaultContent: _("Any item"), + defaultContent: __("Any item"), render: function (data, type, row, meta) { if (row.item) { return ( @@ -50,7 +50,7 @@ $(document).ready(function () { }, { data: "start_date", - title: _("Start date"), + title: __("Start date"), searchable: true, orderable: true, render: function (data, type, row, meta) { @@ -59,7 +59,7 @@ $(document).ready(function () { }, { data: "end_date", - title: _("End date"), + title: __("End date"), searchable: true, orderable: true, render: function (data, type, row, meta) { @@ -68,7 +68,7 @@ $(document).ready(function () { }, { data: "", - title: _("Actions"), + title: __("Actions"), class: "actions", searchable: false, orderable: false, @@ -79,7 +79,7 @@ $(document).ready(function () { '"; } return result; -- 2.45.2