Extend Panucci D-Bus interface for streaming
[gpodder.git] / data / po / validate.sh
blobecdf91f628b3bace23c84810affcf408a7a31eba
1 #!/bin/sh
3 cat <<EOF
5 Checking translations for formal errors...
7 EOF
9 for translation in *.po; do
10 echo " Checking: $translation"
11 msgfmt --check "$translation" || exit 1
12 done
14 cat <<EOF
16 Translation check finished. Strings looking good.
18 EOF