generate_POTFILES.sh revision e3b781d53133ea843774421df1136f7eb8096be1
set -e
echo "Generating updated POTFILES list..."
cd "$mydir"
if [ . = "$mydir" ]; then
prog="$0"
else
fi
(
echo "# List of source files containing translatable strings."
echo "# Please keep this file sorted alphabetically."
echo "[encoding: UTF-8]"
echo "inkscape.desktop.in"
echo "share/filters/filters.svg.h"
echo "share/palettes/palettes.h"
echo "share/patterns/patterns.svg.h"
find src \( -name '*.cpp' -o -name '*.[ch]' \) -type f -print0 | xargs -0 egrep -l '(\<[QNC]?_|gettext) *\(' | sort
find share/extensions -name '*.py' -type f -print0 | xargs -0 egrep -l '(\<[QNC]?_|gettext) *\(' | sort
echo "Done."
echo ""
echo "Now you need to run 'make distcheck' to find all the"
echo "places that get broken because of this script."