author | simon <simon> | 2002-12-17 13:45:19 (UTC) |
---|---|---|
committer | simon <simon> | 2002-12-17 13:45:19 (UTC) |
commit | 1e0289c2367b411fe9c4c34aff11988dc77c0f54 (patch) (side-by-side diff) | |
tree | 5c01b69f905629a1b579148a684c2f6d4db48b9c | |
parent | 49a8bda7be0e3f3a476f664f43753d85448cb483 (diff) | |
download | opie-1e0289c2367b411fe9c4c34aff11988dc77c0f54.zip opie-1e0289c2367b411fe9c4c34aff11988dc77c0f54.tar.gz opie-1e0289c2367b411fe9c4c34aff11988dc77c0f54.tar.bz2 |
- update by Carsten
-rwxr-xr-x | i18n/status.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/i18n/status.sh b/i18n/status.sh index 5cde18e..6f4b6e2 100755 --- a/i18n/status.sh +++ b/i18n/status.sh @@ -1,8 +1,14 @@ #/bin/sh arg=$1 +foo=$1 if [ x${arg}x = xx ] then arg=. + foo="all" fi + +echo "Status of $foo" +echo + echo "number of strings: " strs=`find $arg -name "*.ts" -exec cat {} \; | grep translation | wc -l` @@ -10,5 +16,5 @@ echo $strs echo "unfinished: " unfi=`find $arg -name "*.ts" -exec cat {} \; | grep translation | grep type=\"unfinished\" | wc -l` -echo $unfi `expr \( $strs - $unfi \) \* 100 / $strs`% +echo $unfi", that means" `expr \( $strs - $unfi \) \* 100 / $strs`% "are done" echo "obsolete: " obso=`find $arg -name "*.ts" -exec cat {} \; | grep translation | grep type=\"obsolete\" | wc -l` |