# HG changeset patch # User Matti Hamalainen # Date 1211337834 -10800 # Node ID be52c86750d7ba4d92c34f1eeb2e882e44e72f1b # Parent 50d5897994ffcb4eef34d643ac62636f8667ccaf Only scan "*.{c,cxx,cc}" instead of "*.c*" when updating POTFILES.in. diff -r 50d5897994ff -r be52c86750d7 po/update-potfiles.sh --- a/po/update-potfiles.sh Wed May 21 04:41:03 2008 +0300 +++ b/po/update-potfiles.sh Wed May 21 05:43:54 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