File indexing completed on 2024-10-13 06:44:51
0001 #!bin/sh 0002 0003 # extract level names for translation 0004 $EXTRACTATTR --attr=board,name --attr=board,author levels/default.xml >> rc.cpp 0005 # invoke the extractrc script on all .ui, .rc, and .kcfg files in the sources 0006 # the results are stored in a pseudo .cpp file to be picked up by xgettext. 0007 $EXTRACTRC `find . -name \*.rc -o -name \*.ui -o -name \*.kcfg` >> rc.cpp 0008 # call xgettext on all source files. If your sources have other filename 0009 # extensions besides .cc, .cpp, and .h, just add them in the find call. 0010 $XGETTEXT `find . -name \*.cc -o -name \*.cpp -o -name \*.h -name \*.qml` -o $podir/picmi.pot