From 6fcf3c344c6bb8a9a0573d7597d128717af16458 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" Signed-off-by: Owen Leonard Signed-off-by: Lucas Gass --- .../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 30c78ff2f27..7deee34e250 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