blob: c8ced12de2c8e94c33e1760d970a0e8acf9acb10 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#! /bin/sh
PACKAGE=mate-user-share;
# normal translations
make -C po $PACKAGE.pot && mv po/$PACKAGE.pot .
# translations for user-quide
rm -f help/$PACKAGE.pot &&
make -C help $PACKAGE.pot
|