From 8dce87309271d44f9f947d5f242bef483a83d695 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 Signed-off-by: Tomas Cohen Arazi (cherry picked from commit adb863b219a1b25dfd6bafbe8344e51a4317381d) Signed-off-by: Matt Blenkinsop --- .../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.39.2