1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-11 00:53:46 +02:00

Added script locale/diagnostics.sh

This commit is contained in:
Paul Licameli
2017-11-28 20:53:29 -05:00
parent be5c061304
commit 5bec6e660c

19
locale/diagnostics.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
# Report how complete each translation catalog is
# How many messages in total?
total=`grep '^msgid' audacity.pot | wc -l`
for filename in `ls *.po`; do
# If there are errors from msgcmp, then the last line on standard error
# contains a count of problematic messages; else it won't match the
# pattern in awk, so assume no errors
errors=`msgcmp $filename audacity.pot 2>&1 | \
awk '/msgcmp: found [0-9]* fatal errors/ { nn = $3 } END {print 0+nn}'`
complete=$((total-errors))
# A few spaces after the filename makes the columns mostly aligned
echo "${filename} " $'\t' $complete $'\t' "$((complete*100/total)) %"
done | sort -n -k3
exit 0