author | cniehaus <cniehaus> | 2003-01-28 18:24:58 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2003-01-28 18:24:58 (UTC) |
commit | 0bbf9cc78e46de9e116f6b4f8de2b736759f8c15 (patch) (unidiff) | |
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 @@ | |||
1 | #!/bin/sh | ||
2 | # | ||
3 | # Main | ||
4 | # | ||
5 | arg=$1 | ||
6 | if [ "x${arg}x" = "xx" ]; then | ||
7 | echo "Usage: ./status_indiviual XX" | ||
8 | echo " with XX as a languagecode" | ||
9 | exit | ||
10 | fi | ||
11 | |||
12 | for i in $1/*.ts; do echo $i - `grep translation "$i" | grep type=\"unfinished\" | wc -l` ; done | ||
13 | |||