diff options
author | raveit65 <[email protected]> | 2018-09-27 16:00:57 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-09-27 16:19:48 +0200 |
commit | d3a3b1729f837a6da39cfb2b9f8e0b7fa379df83 (patch) | |
tree | cbcea4bf87e17d9e94552f285136a141858216e8 /makepot | |
parent | 4e15c188a04bb871e888225771c8d2530af57c33 (diff) | |
download | mate-applets-d3a3b1729f837a6da39cfb2b9f8e0b7fa379df83.tar.bz2 mate-applets-d3a3b1729f837a6da39cfb2b9f8e0b7fa379df83.tar.xz |
tx: add help from applets to transifex config
Diffstat (limited to 'makepot')
-rwxr-xr-x | makepot | 57 |
1 files changed, 57 insertions, 0 deletions
@@ -1,5 +1,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 . + |