From 90c44800d14c8ff87e260782b1766d442f7d23b8 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 8 Oct 2018 11:47:15 +0100 Subject: [PATCH] Bug 21113: Corrections to patron merge confirmation prompt Signed-off-by: Owen Leonard Signed-off-by: Chris Cormack --- koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/list.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/list.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/list.tt index 18799f3bf6..006681b951 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/list.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/list.tt @@ -245,11 +245,11 @@ $('.merge-patrons').on('click', function() { var checkedItems = $("input:checked"); if ($(checkedItems).length < 2) { - alert(_("You must select one or more patrons to remove")); + alert(_("You must select two or more patrons to merge")); return false; } $(checkedItems).parents('tr').addClass("warn"); - if (confirm(_("Are you sure you want to remove the selected patrons?"))) { + if (confirm(_("Are you sure you want to merge the selected patrons?"))) { var merge_patrons_url = '/cgi-bin/koha/members/merge-patrons.pl?' + $('.selection:checked') .map(function() { -- 2.19.1