Skip to content
Snippets Groups Projects
Commit 7b51a854 authored by Austin King's avatar Austin King
Browse files

Merge pull request #1221 from mathjazz/check_po

Adding script to check if all locales have committed to SVN
parents e7980544 06a2753a
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