summaryrefslogtreecommitdiff
authorcniehaus <cniehaus>2003-01-28 18:24:58 (UTC)
committer cniehaus <cniehaus>2003-01-28 18:24:58 (UTC)
commit0bbf9cc78e46de9e116f6b4f8de2b736759f8c15 (patch) (unidiff)
treec827c72d93c37816506e0c7a5fd2e30063231ea1
parentd3f2e827988b4977ca0c0d0b5f2eef61529a597a (diff)
downloadopie-0bbf9cc78e46de9e116f6b4f8de2b736759f8c15.zip
opie-0bbf9cc78e46de9e116f6b4f8de2b736759f8c15.tar.gz
opie-0bbf9cc78e46de9e116f6b4f8de2b736759f8c15.tar.bz2
wow, bash is not that hard :) This is a very nice script for all
translators...
Diffstat (more/less context) (ignore whitespace changes)
-rwxr-xr-xi18n/status_individual.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/i18n/status_individual.sh b/i18n/status_individual.sh
new file mode 100755
index 0000000..781b794
--- a/dev/null
+++ b/i18n/status_individual.sh
@@ -0,0 +1,13 @@
1#!/bin/sh
2#
3# Main
4#
5arg=$1
6if [ "x${arg}x" = "xx" ]; then
7 echo "Usage: ./status_indiviual XX"
8 echo " with XX as a languagecode"
9 exit
10fi
11
12for i in $1/*.ts; do echo $i - `grep translation "$i" | grep type=\"unfinished\" | wc -l` ; done
13