From 35e44cc51d338ad4c234d123b8ed162dfeed4e77 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 5 Feb 2023 02:07:20 +0100 Subject: [PATCH] Bug 32230: Fix capitalization of "Manage Domains" To test: * Go to administration > Identity providers * Add a new identity provider and fill out all required form fields Hint: you can use the buttons to add example JSON to the input fields * Save * Verify the entry in the table now shows a "Manage Domains" button * Apply patch * Verify the button now reads correctly: "Manage domains" --- .../intranet-tmpl/prog/en/modules/admin/identity_providers.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/identity_providers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/identity_providers.tt index 30c78ff2f2..7deee34e25 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/identity_providers.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/identity_providers.tt @@ -448,7 +448,7 @@ "data": function( row, type, val, meta ) { var result = ' '+_("Edit")+''+"\n"; result += ' '+_("Delete")+''+"\n"; - result += ' '+_("Manage Domains")+''; + result += ' '+_("Manage domains")+''; return result; }, "searchable": false, -- 2.30.2