cryptonas/scripts/fetch_po_files.sh

25 lines
925 B
Bash
Raw Normal View History

2006-12-01 10:16:46 +01:00
#!/bin/sh
2006-12-01 20:26:30 +01:00
# this script symlinks all cbx po files to the thoraxs pootle dir
2006-12-01 10:16:46 +01:00
BASEPATH="/home/cryptobox/cbx-svn/trunk"
2006-12-01 20:26:30 +01:00
#TARGETPATH="/home/cryptobox/pootle-files"
2006-12-01 10:59:19 +01:00
TARGETPATH="/home/cryptobox/pootle-files"
2006-12-01 10:16:46 +01:00
2006-12-01 20:26:30 +01:00
## pot for the server
find ${BASEPATH}/intl/ -name *.pot -exec ln -s '{}' ${TARGETPATH}/ \;
for language in `ls ${BASEPATH}/intl/` ; do
[ ! -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
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
done
2006-12-01 10:16:46 +01:00
done
2006-12-01 10:59:19 +01:00
2006-12-01 10:16:46 +01:00
chown -R pootle. ${TARGETPATH}
2006-12-01 10:59:19 +01:00
/etc/init.d/pootle restart