File indexing completed on 2024-04-21 16:33:24

0001 #!/bin/sh
0002 cd ..
0003 dirs="app plugins/iso plugins/krarc"
0004 
0005 # This is usually added by scripty but the fact that this Messages.sh file
0006 # is hidden away in subdir that doesn't contain the actual code breaks scripty's heuristic
0007 echo 'i18nc("NAME OF TRANSLATORS","Your names");' >> rc.cpp
0008 echo 'i18nc("EMAIL OF TRANSLATORS","Your emails");' >> rc.cpp
0009 
0010 $EXTRACTRC `find . -name \*.rc -o -name \*.ui` >> rc.cpp || exit 11
0011 $EXTRACTRC --tag-group=none --tag=title --tag=category --tag=tooltip --tag=description app/useraction_examples.xml >> rc.cpp
0012 $XGETTEXT rc.cpp `find $dirs -name \*.cpp -o -name \*.cc -o -name \*.c -o -name \*.h` -o $podir/krusader.pot
0013 rm -f rc.cpp