From 9ac6718f6aa873cbe7f5c76ca05bc0145795f20f Mon Sep 17 00:00:00 2001 From: Hammat Wele Date: Fri, 3 Oct 2025 16:05:27 +0000 Subject: [PATCH] Bug 38122: (follow-up) Make "Group by status" and "Ungroup by status" translatable --- .../includes/html_helpers/tables/items/catalogue_detail.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc index c6ccc13519d..1126ceb087b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc @@ -304,9 +304,9 @@ build_items_table(tab_id, true, { destroy: true }, build_items_table_drawncallback ); if ( was_grouped ) { - $(this).html(' Group by status'); + $(this).html(' ' + _("Group by status") + ''); } else { - $(this).html(' Ungroup by status'); + $(this).html(' '+ _("Ungroup by status") + ''); } }); -- 2.34.1