blob: 3bffe122f8e83e2382450b7cff1501cca51efc43 (
plain)
1
2
3
4
5
6
7
|
#/bin/sh
echo "number of strings: "
grep translation go.ts | wc -l
echo "unfinished: "
grep translation go.ts | grep type=\"unfinished\" | wc -l
echo "obsolete: "
grep translation go.ts | grep type=\"obsolete\" | wc -l
|