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