Skip to content
Snippets Groups Projects
Commit 06a2753a authored by Matjaž Horvat's avatar Matjaž Horvat
Browse files

Adding script to check if all locales have committed to SVN

parent e7980544
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# syntax:
# check-po.sh
for lang in `find locale -type f -name "*.po"`; do
dir=`dirname $lang`
stem=`basename $lang .po`
printf "${lang}: "
msgfmt --statistics ${dir}/${stem}.po
done
rm messages.mo
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment