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