author | cniehaus <cniehaus> | 2003-01-28 18:24:58 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2003-01-28 18:24:58 (UTC) |
commit | 0bbf9cc78e46de9e116f6b4f8de2b736759f8c15 (patch) (side-by-side diff) | |
tree | c827c72d93c37816506e0c7a5fd2e30063231ea1 | |
parent | d3f2e827988b4977ca0c0d0b5f2eef61529a597a (diff) | |
download | opie-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...
-rwxr-xr-x | i18n/status_individual.sh | 13 |
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 @@ +#!/bin/sh +# +# Main +# +arg=$1 +if [ "x${arg}x" = "xx" ]; then + echo "Usage: ./status_indiviual XX" + echo " with XX as a languagecode" + exit +fi + +for i in $1/*.ts; do echo $i - `grep translation "$i" | grep type=\"unfinished\" | wc -l` ; done + |