blob: a6c3af94d8b11b76974db2597cfaaeaa643978cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#! /bin/sh
PACKAGE=mate-panel;
CLOCK=mate-clock;
FISH=mate-fish;
# regular translations
make -C po $PACKAGE.pot && mv po/$PACKAGE.pot .
sed -i "/#, fuzzy/d" $PACKAGE.pot
# clock
make -C help/$CLOCK $CLOCK.pot \
&& mv help/$CLOCK/$CLOCK.pot .
# fish
make -C help/$FISH $FISH.pot \
&& mv help/$FISH/$FISH.pot .
|