~morphis/account-polld/external-pollers

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
#!/bin/sh

sources=$(find . -name '*.go' | xargs)
domain='account-polld'
pot_file=po/$domain.pot
desktop=data/$domain.desktop

sed -e 's/^Name=/_Name=/' $desktop > $desktop.tr

/usr/bin/intltool-extract --update --type=gettext/ini $desktop.tr $domain

xgettext -o $pot_file \
 --add-comments \
 --from-code=UTF-8 \
 --c++ --qt --add-comments=TRANSLATORS \
 --keyword=Gettext --keyword=tr --keyword=tr:1,2 --keyword=N_ --keyword=_description \
 --package-name=$domain \
 --copyright-holder='Canonical Ltd.' \
 $sources $desktop.tr.h

echo Removing $desktop.tr.h
rm $desktop.tr.h

if [ "$1" = "--commit" ] && [ -n "$(bzr status $pot_file)" ]; then
    echo Commiting $pot_file
    bzr commit -m "Updated translation template" $pot_file
fi