blob: f3cb24ac9e6bd5878dead4e308464c5c3a9b1be3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#! /bin/sh
set -e
echo "Generating updated POTFILES list..."
mydir=`dirname "$0"`
cd "$mydir"
if [ . = "$mydir" ]; then
prog="$0"
else
prog=`basename "$0"`
fi
rm -f POTFILES.in.new
(
# enforce consistent sort order and date format
export LC_ALL=C
echo "# List of source files containing translatable strings."
echo "# Please keep this file sorted alphabetically."
echo "# Generated by $prog at `date`"
echo "[encoding: UTF-8]"
echo "inkscape.appdata.xml.in"
echo "inkscape.desktop.in"
echo "share/filters/filters.svg.h"
echo "share/palettes/palettes.h"
echo "share/patterns/patterns.svg.h"
echo "share/symbols/symbols.h"
echo "share/templates/templates.h"
cd ..
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
find share/extensions -name '*.inx' -type f -print | sort | sed 's%^%[type: gettext/xml] %'
cd po
# Todo:
# - add any other UI files we might need in future
# - evaluate to use xgettext with proper options directly and drop intltool-update
echo "[type: gettext/xml] share/ui/menus.xml"
#do not include files from POTFILES.skip in the generated list
) | grep -vx -f POTFILES.skip > POTFILES.in.new
diff -q POTFILES.in POTFILES.in.new ||:
mv POTFILES.in.new POTFILES.in
echo "Done."
echo ""
echo "Now you need to run 'make distcheck' to find all the"
echo "places that get broken because of this script."
|