Generate file list for xgettext in a pipeline

This commit is contained in:
Simon Richter 2018-05-25 15:27:28 +02:00 committed by nickoe
parent fd5af143d2
commit 9ab216cb09
1 changed files with 2 additions and 10 deletions

View File

@ -59,17 +59,9 @@ POTDIRS=`cat $LOCALDIR/POTDIRS|grep -v '^#'|grep -v '^\s*$'` #Read file without
cd $SOURCEDIR
#Generate source file list
for f in $POTDIRS
do
find $f -name "*.cpp" >>$LOCALDIR/POTFILES #List files
find $f -name "*.h" >>$LOCALDIR/POTFILES #List files
done
#Generate/update template pot file
xgettext -f $LOCALDIR/POTFILES -k_ -k_HKI -kwxPLURAL:1,2 --force-po --from-code utf-8 -o $LOCALDIR/kicad.pot
rm $LOCALDIR/POTFILES
find $POTDIRS -name '*.cpp' -or -name '*.h' |
xgettext -f- -k_ -k_HKI -kwxPLURAL:1,2 --force-po --from-code utf-8 -o $LOCALDIR/kicad.pot
#check if present in locale list
validate() { echo $LINGUAS | grep -F -q -w "$1"; }