-rwxr-xr-x | i18n/status.sh | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/i18n/status.sh b/i18n/status.sh index 315f9dd..5cde18e 100755 --- a/i18n/status.sh +++ b/i18n/status.sh | |||
@@ -1,8 +1,15 @@ | |||
1 | #/bin/sh | 1 | #/bin/sh |
2 | arg=$1 | 2 | arg=$1 |
3 | if [ x${arg}x = xx ] | ||
4 | then | ||
5 | arg=. | ||
6 | fi | ||
3 | echo "number of strings: " | 7 | echo "number of strings: " |
4 | grep translation $arg/*.ts | wc -l | 8 | strs=`find $arg -name "*.ts" -exec cat {} \; | grep translation | wc -l` |
9 | echo $strs | ||
5 | echo "unfinished: " | 10 | echo "unfinished: " |
6 | grep translation $arg/*.ts | grep type=\"unfinished\" | wc -l | 11 | unfi=`find $arg -name "*.ts" -exec cat {} \; | grep translation | grep type=\"unfinished\" | wc -l` |
12 | echo $unfi `expr \( $strs - $unfi \) \* 100 / $strs`% | ||
7 | echo "obsolete: " | 13 | echo "obsolete: " |
8 | grep translation $arg/*.ts | grep type=\"obsolete\" | wc -l | 14 | obso=`find $arg -name "*.ts" -exec cat {} \; | grep translation | grep type=\"obsolete\" | wc -l` |
15 | echo $obso `expr \( $strs - $obso \) \* 100 / $strs`% | ||