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