diff options
author | raveit65 <[email protected]> | 2018-10-05 15:29:12 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-10-05 15:29:12 +0200 |
commit | eeccbf69346114ad884d5f7234af23987263dbc8 (patch) | |
tree | ff2e2b4d07844fe42b28e5fce6f0e513a5c366b1 /makepot | |
parent | 6f9f947e8041124735e9c863ce3d4aa14a8d2d6d (diff) | |
download | mate-utils-eeccbf69346114ad884d5f7234af23987263dbc8.tar.bz2 mate-utils-eeccbf69346114ad884d5f7234af23987263dbc8.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 . |