File indexing completed on 2024-04-28 16:26:06

0001 #! /bin/sh
0002 source ../kundo2_aware_xgettext.sh
0003 
0004 potfile=kexi.pot
0005 find_exclude $potfile
0006 
0007 LIST="`find . \( $EXCLUDE \) -prune -o \( -name \*.ui \) -type f -print | grep -v -e '/\.'`"
0008 if test -n "$LIST"; then
0009     $EXTRACTRC $LIST >> rc.cpp
0010 fi
0011 
0012 # Exclude files containing "#warning noi18n"
0013 LIST=`find . \( $EXCLUDE \) -prune -o \( -name \*.h -o -name \*.cpp -o -name \*.cc -o -name \*.hxx -o -name \*.cxx \) -type f -print | sort | while read f ; do \
0014     if ! grep -q '^#warning noi18n ' $f ; then echo $f; fi \
0015 done \
0016 `
0017 kundo2_aware_xgettext $potfile $LIST
0018 rm -f rc.cpp