From afddf4145fbbfd978e4c5cd22f0ae2cbbef70560 Mon Sep 17 00:00:00 2001 From: Chris Kirby Date: Wed, 21 Jun 2017 18:27:21 +0000 Subject: [PATCH] Bug 18839: Suggestion.pl spelling mistake On the suggestion management page, 'unknown' is spelled 'unkown' This patch corrects this spelling mistake in suggestion/suggestion.pl koha-tmpl/intranet-tmpl/prog/en/include/strings.inc koha-tmpl/intranet-tmpl/prog/en/include/search_indexes.inc Signed-off-by: Lee Jamison Signed-off-by: sonia BOUIS Signed-off-by: Jonathan Druart --- koha-tmpl/intranet-tmpl/prog/en/includes/search_indexes.inc | 2 +- koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc | 2 +- suggestion/suggestion.pl | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/search_indexes.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/search_indexes.inc index 76226a0b04..354402979c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/search_indexes.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/search_indexes.inc @@ -42,7 +42,7 @@ [%# Use non-normalized st-year instead of st-numeric, %] - [%# since pubdate can include 'u' to signify unkown %] + [%# since pubdate can include 'u' to signify unknown %] [%# dates. See "Legal Characters" at: %] [%# http://www.loc.gov/marc/bibliographic/bd008a.html %] [%# This search is also for date ranges due to the %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc index 7560fc2115..82ff7753ab 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc @@ -9,7 +9,7 @@ var NOT_CHECKED_OUT = _("not checked out"); var TOO_MANY_RENEWALS = _("too many renewals"); var ON_RESERVE = _("on hold"); - var REASON_UNKNOWN = _("reason unkown"); + var REASON_UNKNOWN = _("reason unknown"); var TODAYS_CHECKOUTS = _("Today's checkouts"); var PREVIOUS_CHECKOUTS = _("Previous checkouts"); var BY = _("by _AUTHOR_"); diff --git a/suggestion/suggestion.pl b/suggestion/suggestion.pl index c291534fa4..929e65ad51 100755 --- a/suggestion/suggestion.pl +++ b/suggestion/suggestion.pl @@ -59,7 +59,7 @@ sub GetCriteriumDesc{ if ($displayby =~ /status/i) { unless ( grep { /$criteriumvalue/ } qw(ASKED ACCEPTED REJECTED CHECKED ORDERED AVAILABLE) ) { my $av = Koha::AuthorisedValues->search({ category => 'SUGGEST_STATUS', authorised_value => $criteriumvalue }); - return $av->count ? $av->next->lib : 'Unkown'; + return $av->count ? $av->next->lib : 'Unknown'; } return ($criteriumvalue eq 'ASKED'?"Pending":ucfirst(lc( $criteriumvalue))) if ($displayby =~/status/i); } @@ -67,7 +67,7 @@ sub GetCriteriumDesc{ if $displayby =~ /branchcode/; if ( $displayby =~ /itemtype/ ) { my $av = Koha::AuthorisedValues->search({ category => 'SUGGEST_FORMAT', authorised_value => $criteriumvalue }); - return $av->count ? $av->next->lib : 'Unkown'; + return $av->count ? $av->next->lib : 'Unknown'; } if ($displayby =~/suggestedby/||$displayby =~/managedby/||$displayby =~/acceptedby/){ my $patron = Koha::Patrons->find( $criteriumvalue ); -- 2.11.0