.pot aren't needed

This commit is contained in:
age 2006-12-01 19:52:38 +00:00
parent 55aeea782f
commit f6295a4b2d
1 changed files with 3 additions and 11 deletions

View File

@ -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