From e8170909f4ab3b216be815c04711529f36868913 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 30 Sep 2024 16:46:38 +0200 Subject: [PATCH] Bug 38035: Exclude "sound" from the list of installed languages Not sure how this is coming from, neither why we have not noticed that before, but "sound" is listed under `koha-translate --list` It's coming from `ls koha-tmpl/intranet-tmpl/prog` Signed-off-by: Tomas Cohen Arazi Signed-off-by: Martin Renvoize --- 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 b9a8ec835d..c06bffc824 100755 --- a/debian/scripts/koha-translate +++ b/debian/scripts/koha-translate @@ -86,7 +86,7 @@ print_installed() ( ls -1 $KOHA_HOME/$OPAC_TMPL/bootstrap/ ; \ ls -1 $KOHA_HOME/$OPAC_TMPL/prog/ 2> /dev/null ) | \ sort | uniq | \ - grep -v -e images -e itemtypeimg -x -e en -e css -e js -e less -e lib + grep -v -e images -e itemtypeimg -x -e en -e css -e js -e less -e lib -e sound } install_lang() -- 2.39.5