From a8054960fca0e0b1521ef338cb04fa6a061427b7 Mon Sep 17 00:00:00 2001 From: Emmi Takkinen Date: Tue, 21 Jan 2025 12:53:15 +0200 Subject: [PATCH] Bug 38935: Actions column not translatable in itemsearch.tt Column "Actions" was not translatable in itemsearch.tt. This patch makes column translatable. This also fixes typo in this columns id. Test plan: 1. Change language as something else than english. 2. Navigate to "Item search" page and search for items. => Note that column "Actions" still reads "Actions" 3. Apply this patch. 4. Make new item search. => Column should now have correct translation. Signed-off-by: David Nind --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt index 437b0b76a0..a59e877d47 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt @@ -480,7 +480,7 @@ + ' ' + _("Checkouts") + '' + ' ' + _("Last checkout date") + '' + ' ' + _("Due date") + '' - + ' Actions' + + ' ' + _("Actions") + '' + ' '; var table = '' -- 2.39.5