# HG changeset patch # User Matti Hamalainen # Date 1211337928 -10800 # Node ID e94e641bf664688e317beb08aa9c6d4b34303c2a # Parent 1e3332aac2be81eaa23f87b4e007938f436cd1d4 Only scan "*.{c,cxx,cc}" instead of "*.c*" when updating POTFILES.in. diff -r 1e3332aac2be -r e94e641bf664 po/update-potfiles.sh --- a/po/update-potfiles.sh Wed May 21 05:37:19 2008 +0300 +++ b/po/update-potfiles.sh Wed May 21 05:45:28 2008 +0300 @@ -2,4 +2,4 @@ rm POTFILES* echo "# Please don't update this file manually - use ./update-potfiles.sh instead!" > POTFILES.in cd .. -find src/ \( -name "*.c*" -o -name "*.glade" \) -exec grep -lE "translatable|_\(" \{\} \; | sort | uniq >> po/POTFILES.in +find src/ \( -name "*.c" -o -name "*.cxx" -o -name "*.cc" -o -name "*.glade" \) -exec grep -lE "translatable|_\(" \{\} \; | sort | uniq >> po/POTFILES.in