blob: c37f8ab94e665ae2cbd0b5a7dbc729aa0a76586b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/sh
PACKAGE=mate-control-center;
# normal translations
make -C po $PACKAGE.pot && mv po/$PACKAGE.pot .
sed -i "/#, fuzzy/d" $PACKAGE.pot
sed -i 's/charset=CHARSET/charset=UTF-8/g' $PACKAGE.pot
# translations for user-quide
rm -f help/$PACKAGE.pot &&
make -C help $PACKAGE.pot
|