blob: b762ecbe068026cee457fbe5750fea0478418da8 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
PWD=$(pwd)
[[ ${PWD/*\//} = scripts ]] && pushd .. > /dev/null || pushd . > /dev/null
xgettext --no-wrap --width 1 --default-domain=tuxanci --add-comments=/// -k_ `find ./ -name \*.c | grep -v .git | sort | uniq | tr '\n' ' '` -o ./po/tuxanci.pot
cd po/
find ./ -name \*.po -print | xargs -i msgmerge --no-wrap --width 1 -U {} tuxanci.pot
rm -rf *~
popd > /dev/null
|