re-adding .pngs as binary
[dia.git] / sheets / checktrans
blobf55992544a0e7c75d67322a9412a28b3ea642618
1 #!/bin/sh
3 str=sheet-translation-report
5 cat <<__EOF__ >$str
6 *** Sheet translation report: ***
7 (Absence of a language code means 0% translation for that language)
8 (Help for translations (and/or much more) is of course welcome !)
9 __EOF__
10 ./checktrans.py $* >>$str || cat <<__EOF__ >>$str
11 E: checktrans failed to run. Please check that python and python-xml are installed
12 E: on your system. On some systems, python-xml is called PyXML. If in doubt,
13 E: have a look at http://pyxml.sourceforge.net
14 __EOF__
16 cat sheet-translation-report
17 exit 0