From d7dc11e61fea5dcc3f0087e46b6eee8d74c21c63 Mon Sep 17 00:00:00 2001 From: Indranil Das Gupta Date: Fri, 15 May 2015 01:12:11 +0530 Subject: [PATCH] Bug 14203: Message for non-existent lang removal A trivial string patch to update the error message displayed to user if koha-translate is used to attempt removal of a language that is not installed. Test plan ========= 1/ attempt to remove a non-existent language by /debian/scripts/koha-translate --remove 2/ it should show "Error: the selected language is not already installed." 3/ apply patch 4/ repeat step 1; it should show "Error: the selected language is not installed." Signed-off-by: Nick Clemens Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi --- debian/scripts/koha-translate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/scripts/koha-translate b/debian/scripts/koha-translate index 23c51df805..af6ac438b6 100755 --- a/debian/scripts/koha-translate +++ b/debian/scripts/koha-translate @@ -158,7 +158,7 @@ remove_lang() rm -rf $KOHA_INSTALL_DIR/opac/htdocs/opac-tmpl/bootstrap/$lang rm -rf $KOHA_INSTALL_DIR/intranet/htdocs/intranet-tmpl/prog/$lang else - die "Error: the selected language is not already installed." + die "Error: the selected language is not installed." fi else die "Error: no language code supplied." -- 2.39.5