From e1bc0052f9fb410031be8873566a60672c335d8e 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 cd7e8df69d..a9ac561d15 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 @@ -310,9 +310,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.52.0