From 8472d37073cc0870c15ab356a66fa7747c69a3c2 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 22 Jan 2021 11:22:30 +0000 Subject: [PATCH] Bug 27525: Replace "wich" with "with" in batch delete template This patch corrects two typos: "wich" -> "with." To test, apply the patch and check the batch delete template (batchMod-del.tt) and confirm that the two instances of this sentence are correct: "Last item for bibliographic record with biblio-level hold on it" Signed-off-by: David Nind Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart (cherry picked from commit e063bd4f5909f0f9babb328bbecce3354d75d20b) Signed-off-by: Fridolin Somers (cherry picked from commit 191248bd2e7a15987bbd6f8bc7f605977d8d92be) Signed-off-by: Andrew Fuerste-Henry --- koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-del.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-del.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-del.tt index eb5ddd82c6..521cc64d50 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-del.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-del.tt @@ -120,7 +120,7 @@ [% CASE "not_same_branch" %][% SET cannot_delete_reason = t("Item does not belongs to your library") %] [% CASE "book_reserved" %][% SET cannot_delete_reason = t("Item has a waiting hold") %] [% CASE "linked_analytics" %][% SET cannot_delete_reason = t("Item has linked analytics") %] - [% CASE "last_item_for_hold" %][% SET cannot_delete_reason = t("Last item for bibliographic record wich biblio-level hold on it") %] + [% CASE "last_item_for_hold" %][% SET cannot_delete_reason = t("Last item for bibliographic record with biblio-level hold on it") %] [% CASE %][% SET cannot_delete_reason = t("Unknown reason") _ '(' _ can_be_deleted _ ')' %] [% END %] @@ -255,7 +255,7 @@ [% CASE "not_same_branch" %][% SET cannot_delete_reason = t("Item does not belongs to your library") %] [% CASE "book_reserved" %][% SET cannot_delete_reason = t("Item has a waiting hold") %] [% CASE "linked_analytics" %][% SET cannot_delete_reason = t("Item has linked analytics") %] - [% CASE "last_item_for_hold" %][% SET cannot_delete_reason = t("Last item for bibliographic record wich biblio-level hold on it") %] + [% CASE "last_item_for_hold" %][% SET cannot_delete_reason = t("Last item for bibliographic record with biblio-level hold on it") %] [% CASE %][% SET cannot_delete_reason = t("Unknown reason") _ '(' _ can_be_deleted _ ')' %] [% END %] [% cannot_delete_reason | html %] -- 2.39.5