Warning, file /sdk/pology/po/pology/local.sh was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 #!/bin/sh
0002 
0003 mode=$1
0004 lang=$2
0005 
0006 cd $(dirname $0)
0007 
0008 case "$mode" in
0009 build)
0010     ./update-po.sh compile $lang
0011     ;;
0012 *)
0013     echo -e "Usage:\n  $(basename $0) build [lang]"
0014     exit 1
0015 esac