diff --git a/scripts/fetch_po_files.sh b/scripts/fetch_po_files.sh index 1b43e6d..87d0626 100755 --- a/scripts/fetch_po_files.sh +++ b/scripts/fetch_po_files.sh @@ -1,22 +1,14 @@ #!/bin/sh # this script symlinks all cbx po files to the thoraxs pootle dir BASEPATH="/home/cryptobox/cbx-svn/trunk" -#TARGETPATH="/home/cryptobox/pootle-files" TARGETPATH="/home/cryptobox/pootle-files" -## pot for the server -find ${BASEPATH}/intl/ -name *.pot -exec ln -s '{}' ${TARGETPATH}/ \; - for language in `ls ${BASEPATH}/intl/` ; do + echo $language [ ! -d ${TARGETPATH}/${language} ] && mkdir -p ${TARGETPATH}/${language} - ## po for the server - find ${BASEPATH}/intl/${language} -name *.po -exec ln -s '{}' ${TARGETPATH}/${language}/ \; 1 &>2 >/dev/null - + find ${BASEPATH}/intl/${language} -name *.po -exec ln -s '{}' ${TARGETPATH}/${language}/ \; for plugin in `ls ${BASEPATH}/plugins/`; do - ## po & pot for plugins - find ${BASEPATH}/plugins/${plugin}/intl/ -name *.pot -exec ln -s '{}' ${TARGETPATH}/ \; 1 &>2 >/dev/null - find ${BASEPATH}/plugins/${plugin}/intl/${language} -name *.po -exec ln -s '{}' ${TARGETPATH}/${language}/ \; 1 &>2 >/dev/null - + find ${BASEPATH}/plugins/${plugin}/intl/${language} -name *.po -exec ln -s '{}' ${TARGETPATH}/${language}/ \; done done