summaryrefslogtreecommitdiff
path: root/i18n
Unidiff
Diffstat (limited to 'i18n') (more/less context) (ignore whitespace changes)
-rwxr-xr-xi18n/status.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/i18n/status.sh b/i18n/status.sh
index 3bffe12..315f9dd 100755
--- a/i18n/status.sh
+++ b/i18n/status.sh
@@ -1,7 +1,8 @@
1#/bin/sh 1#/bin/sh
2arg=$1
2echo "number of strings: " 3echo "number of strings: "
3grep translation go.ts | wc -l 4grep translation $arg/*.ts | wc -l
4echo "unfinished: " 5echo "unfinished: "
5grep translation go.ts | grep type=\"unfinished\" | wc -l 6grep translation $arg/*.ts | grep type=\"unfinished\" | wc -l
6echo "obsolete: " 7echo "obsolete: "
7grep translation go.ts | grep type=\"obsolete\" | wc -l 8grep translation $arg/*.ts | grep type=\"obsolete\" | wc -l