forked from solus-project/budgie-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
updatePot.sh
executable file
·38 lines (31 loc) · 943 Bytes
/
updatePot.sh
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
#!/bin/bash
function do_gettext()
{
xgettext --package-name=budgie-desktop --package-version=10.4 $* --default-domain=budgie-desktop --join-existing --from-code=UTF-8
}
function do_intltool()
{
intltool-extract --type=$1 $2
}
rm budgie-desktop.po -f
touch budgie-desktop.po
for file in `find src -not -path '*/gvc/*' -name "*.c" -or -name "*.vala"`; do
if [[ `grep -F "_(\"" $file` ]]; then
do_gettext $file --add-comments
fi
done
for file in `find src -name "*.ui"`; do
if [[ `grep -F "translatable=\"yes\"" $file` ]]; then
do_intltool gettext/glade $file
do_gettext ${file}.h --add-comments --keyword=N_:1
rm $file.h
fi
done
for file in `find src -name "*.in"`; do
if [[ `grep -E "^_*" $file` ]]; then
do_intltool gettext/keys $file
do_gettext ${file}.h --add-comments --keyword=N_:1
rm $file.h
fi
done
mv budgie-desktop.po po/budgie-desktop.pot