Subversion Repositories public

Rev

Rev 251 | Blame | Compare with Previous | Last modification | View Log | RSS feed

#!/bin/sh
BASEDIR="$HOME/sportwatcher"   # root of translatable sources
PROJECT="sportwatcher"  # project name
BUGADDR="http://www.theosys.at/sportwatcher"      # MSGID-Bugs
WDIR=`pwd`          # working dir
 
 
echo "Preparing rc files"
cd ${BASEDIR}
# we use simple sorting to make sure the lines do not jump around too much from system to system
find ${BASEDIR} -name '*.ui' -o -name '*.kcfg' | sort > ${WDIR}/rcfiles.list
xargs --arg-file=${WDIR}/rcfiles.list extractrc > ${WDIR}/rc.cpp
# additional string for KAboutData
echo 'i18nc("NAME OF TRANSLATORS","Andreas Theofilu");' >> ${WDIR}/rc.cpp
echo 'i18nc("EMAIL OF TRANSLATORS","andreas@theosys.at");' >> ${WDIR}/rc.cpp
cd ${WDIR}
echo "Done preparing rc files"
 
 
echo "Extracting messages"
cd ${BASEDIR}
# see above on sorting
## find . -name '*.cpp' -o -name '*.h' -o -name '*.c' | sort > ${WDIR}/infiles.list
#xargs --arg-file=${WDIR}/infiles.list extractrc >> ${WDIR}/rc.cpp
#echo "rc.cpp" >> ${WDIR}/files.list
cd ${WDIR}
xgettext ${WDIR}/rc.cpp -C -kde -ci18n -ki18n:1 -ki18nc:1c,2 -ki18np:1,2 -ki18ncp:1c,2,3 -ktr2i18n:1 \
       -kI18N_NOOP:1 -kI18N_NOOP2:1c,2 -kaliasLocale -kki18n:1 -kki18nc:1c,2 -kki18np:1,2 -kki18ncp:1c,2,3 \
   --msgid-bugs-address="${BUGADDR}" \
     --files-from=infiles.list -D ${BASEDIR} -D ${WDIR} -o po/${PROJECT}.pot || { echo "error while calling xgettext. aborting."; exit 1; }
echo "Done extracting messages"
 
 
echo "Merging translations"
catalogs=`find . -name '*.po'`
for cat in $catalogs; do
  echo $cat
  msgmerge -o $cat.new $cat po/${PROJECT}.pot
  mv $cat.new $cat
done
echo "Done merging translations"
 
 
echo "Cleaning up"
cd ${WDIR}
##rm rcfiles.list
##rm infiles.list
rm rc.cpp
echo "Done"