summaryrefslogtreecommitdiff
path: root/makepot
blob: 5d8b17f791f004565dc479458c174f1051496e3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#! /bin/sh

PACKAGE=mate-applets;
ACCESSX=mate-accessx-status;
BATT=mate-battstat;
CHAR=mate-char-palette;
FREQ=mate-cpufreq-applet;
DRIVE=mate-drivemount;
GEYES=mate-geyes;
WEATHER=mateweather;
MULTI=mate-multiload;
NET=mate-netspeed-applet;
STICKY=mate-stickynotes-applet;
TRASH=mate-trashapplet;

# main translation
make -C po $PACKAGE.pot && mv po/$PACKAGE.pot .

# accessx-status
make -C accessx-status/docs $ACCESSX.pot \
&& mv accessx-status/docs/$ACCESSX.pot .

# battstat
make -C battstat/docs $BATT.pot \
&& mv battstat/docs/$BATT.pot .

# charpick
make -C charpick/help $CHAR.pot \
&& mv charpick/help/$CHAR.pot .

# cpufreq
make -C cpufreq/help $FREQ.pot \
&& mv cpufreq/help/$FREQ.pot .

# drivemount
make -C drivemount/help $DRIVE.pot \
&& mv drivemount/help/$DRIVE.pot .

# geyes
make -C geyes/docs $GEYES.pot \
&& mv geyes/docs/$GEYES.pot .

# weather
make -C mateweather/docs $WEATHER.pot \
&& mv mateweather/docs/$WEATHER.pot .

# multiload
make -C multiload/docs $MULTI.pot \
&& mv multiload/docs/$MULTI.pot .

# netspeed
make -C netspeed/help $NET.pot \
&& mv netspeed/help/$NET.pot .

# stickynotes
make -C stickynotes/docs $STICKY.pot \
&& mv stickynotes/docs/$STICKY.pot .

# trashapplet
make -C trashapplet/docs $TRASH.pot \
&& mv trashapplet/docs/$TRASH.pot .