File indexing completed on 2025-02-16 04:45:34
0001 #!/bin/sh 0002 # extract rc, ui and kcfg files to rc.cpp 0003 $EXTRACTRC `find . -name '*.rc' -o -name '*.ui' -o -name '*.kcfg'` >> rc.cpp 0004 # extract other translation files 0005 ./prepare_i18n_xslt >> rc.cpp 0006 # extract messages 0007 $XGETTEXT `find . -name '*.cpp' -o -name '*.h' -o -name '*.c'` -o $podir/tellico.pot 0008 # cleanup 0009 rm -f rc.cpp