-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 @@ #/bin/sh arg=$1 +if [ x${arg}x = xx ] +then + arg=. +fi echo "number of strings: " -grep translation $arg/*.ts | wc -l +strs=`find $arg -name "*.ts" -exec cat {} \; | grep translation | wc -l` +echo $strs echo "unfinished: " -grep translation $arg/*.ts | grep type=\"unfinished\" | wc -l +unfi=`find $arg -name "*.ts" -exec cat {} \; | grep translation | grep type=\"unfinished\" | wc -l` +echo $unfi `expr \( $strs - $unfi \) \* 100 / $strs`% echo "obsolete: " -grep translation $arg/*.ts | grep type=\"obsolete\" | wc -l +obso=`find $arg -name "*.ts" -exec cat {} \; | grep translation | grep type=\"obsolete\" | wc -l` +echo $obso `expr \( $strs - $obso \) \* 100 / $strs`% |