From 37c69f35cc635008e39c5725db3d47a00d8a0d4a Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 19 Apr 2024 07:05:53 +0000 Subject: [PATCH] Bug 27893: (QA follow-up) Rephrase warning Content-Type: text/plain; charset=utf-8 See comment24 as well. Signed-off-by: Marcel de Rooy --- koha-tmpl/intranet-tmpl/prog/js/catalog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/catalog.js b/koha-tmpl/intranet-tmpl/prog/js/catalog.js index ec49ba5af7..ef7efc9510 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/catalog.js +++ b/koha-tmpl/intranet-tmpl/prog/js/catalog.js @@ -33,7 +33,7 @@ function confirm_deletion(link) { is_confirmed = alert(__("%s item(s) are attached to this record. You must delete all items before deleting this record.").format(count)); } else if (countorders > 0){ if( order_manage_permission ){ - is_confirmed = confirm(__("Warning: This record is used in %s order(s). Deleting it could cause serious issues on acquisition module. Are you sure you want to delete this record?").format(countorders)); + is_confirmed = confirm(__("Warning: This record is used in %s order(s). These orders will be cancelled. Are you sure you want to delete this record?").format(countorders)); } else { is_confirmed = alert(__("%s order(s) are using this record. You need order managing permissions to delete this record.").format(countorders)); } -- 2.30.2