From 6b26f8858e5069a2fae21fb28692a8eeb37fa0a8 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 18 Feb 2015 12:27:20 -0300 Subject: [PATCH] Bug 13728: koha-translate -l -a shows po files instead of language codes This patch corrects the call to 'basename' inside the script so it correctly shows the language code when asked to list the available languages. To test: - On a packages install, run: $ koha-translate --list --available => FAIL: It shows: am-Ethi-opac-bootstrap.po ar-Arab-opac-bootstrap.po az-AZ-opac-bootstrap.po be-BY-opac-bootstrap.po ben-opac-bootstrap.po ... - Apply the patch - Copy the patched debian/scripts/koha-translate script to your packages setup. - Run: $ koha-translate --list --available => SUCCESS: It shows: am-Ethi ar-Arab az-AZ be-BY ben ... - Sign off :-D Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Chris Cormack 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 88f90e8d05..0d978a3479 100755 --- a/debian/scripts/koha-translate +++ b/debian/scripts/koha-translate @@ -73,7 +73,7 @@ print_available() { # Loop over only one opac theme for i in $( ls $PO_DIR | grep opac-bootstrap ); do - echo `basename $i -i-opac-bootstrap.po` | \ + echo `basename $i -opac-bootstrap.po` | \ grep -v -x -e en done } -- 2.20.1