diff options
author | raveit65 <[email protected]> | 2018-10-05 15:38:46 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-10-05 15:38:46 +0200 |
commit | 53735a4f6779d030aeb93c291e1cb88e8a87fba6 (patch) | |
tree | 350861a2fdd26cb2dccb77ce8010a5d0f7935037 /makepot | |
parent | c4dc6a623c1495dd54e3f0b7b9c88a722158142f (diff) | |
download | mate-utils-53735a4f6779d030aeb93c291e1cb88e8a87fba6.tar.bz2 mate-utils-53735a4f6779d030aeb93c291e1cb88e8a87fba6.tar.xz |
tx: simplify source generation and update them
Diffstat (limited to 'makepot')
-rwxr-xr-x | makepot | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -1,5 +1,22 @@ #! /bin/sh PACKAGE=mate-utils; +DISK=mate-disk-usage-analyzer; +SEARCH=mate-search-tool; +LOG=mate-system-log; +DICT=mate-dictionary; +# main translations make -C po $PACKAGE.pot && mv po/$PACKAGE.pot . + +# mate-disk-usage-analyzer +make -C baobab/help $DISK.pot && mv baobab/help/$DISK.pot . + +# mate-search-tool +make -C gsearchtool/help $SEARCH.pot && mv gsearchtool/help/$SEARCH.pot . + +# mate-system-log +make -C logview/help $LOG.pot && mv logview/help/$LOG.pot . + +# mate-dictionary +make -C $DICT/help $DICT.pot && mv $DICT/help/$DICT.pot . |