new release is tagged

This commit is contained in:
lars 2006-12-15 13:48:42 +00:00
parent 25aae11576
commit 33a8c4a1bb
719 changed files with 106587 additions and 0 deletions

10
v0.3/scripts/update_english.sh Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh
which potool &>/dev/null || { echo "potool not found - try 'apt-get install potool'" >&2; exit 1; }
PROJ_DIR=$(cd "$(dirname $0)/.."; pwd)
find "$PROJ_DIR/intl" "$PROJ_DIR/plugins" -type f -name \*.po | grep /intl/en/ | while read a
do potool -c -n scmt "$a" > "${a}.new" && mv "${a}.new" "$a"
done