From 23de58d6e53a51276bdb8321f60efa1dfc93d643 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: Mason James --- 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 16ae5cf60b..b0c111c876 100755 --- a/debian/scripts/koha-translate +++ b/debian/scripts/koha-translate @@ -155,7 +155,7 @@ remove_lang() rm -rf $KOHA_INSTALL_DIR/opac/htdocs/opac-tmpl/ccsr/$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