From 27a2f26a44d309666fc8d5c762f21616fc204dfa Mon Sep 17 00:00:00 2001 From: Katrin Fischer <katrin.fischer.83@web.de> Date: Sun, 5 Feb 2023 01:44:23 +0000 Subject: [PATCH] Bug 32289: Fix punctuation in "Delete desk "X?" The question mark should be after the quote instead of before. To test: * Enable desks using the UseCirculationDesks system preference * Go to administration > circulation desks * Add a new desk and save * Delete desk * Verify the heading reads "Delete desk "X?" * Apply patch * Verify the punctuation now is fixed now Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Lucas Gass <lucas@bywatersolutions.com> --- koha-tmpl/intranet-tmpl/prog/en/modules/admin/desks.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/desks.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/desks.tt index 56a739507fb..d283a57e509 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/desks.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/desks.tt @@ -147,7 +147,7 @@ [% IF op == 'delete_confirm' %] <div class="dialog alert"> - <h1>Delete desk "[% desk.desk_name | html %]?"</h1> + <h1>Delete desk "[% desk.desk_name | html %]"?</h1> <table> <tr><th>Desk ID</th> <td>[% desk.desk_id | html %]</td> -- 2.30.2