added filesystem shapes and misc sheet
[dia.git] / po-checktrans
blobba965e58cc05e9352ac31efccf1744824ec87b43
1 #!/bin/sh
3 str=core-translation-report
4 cat <<__EOF__ >$str
5 *** PO/core/gettext translation report: ***
6 (Absence of a language code means 0% translation for that language)
7 (Help for translations (and/or much more) is of course welcome !)
8 (A star after a language's statistics means that the translation file isn't
9 up to date with the POT (original messages) file)
11 (Please note that 100% doesn't mean that the work is complete: have you
12 checked the sheet translations for your language too ?)
13 __EOF__
14 ./po-checktrans.py $* >>$str || cat <<__EOF__ >>$str
15 E: po-checktrans failed to run. Please check that python is installed
16 E: on your system.
17 __EOF__
19 cat $str
20 exit 0