Skip to content

Instantly share code, notes, and snippets.

@flatcap
Created March 6, 2018 15:37
Show Gist options
  • Save flatcap/225170317900ca1a471a6e157f3f859d to your computer and use it in GitHub Desktop.
Save flatcap/225170317900ca1a471a6e157f3f859d to your computer and use it in GitHub Desktop.
Translation Statistics
#!/bin/bash
# -c = --check
# = --check-format --check-header --check-domain
[ $# = 0 ] && ARGS="*.po" || ARGS="$@"
for i in $ARGS; do
echo -ne "${i%.po}:\t"
msgfmt --statistics -c -o /dev/null $i 2>&1
done | sed 's/ \(message\|translation\)s*\.*//g' | sort -nr -k2 -k4 -k6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment