From 0704b913f5da703218f66ddc18a4c6b280577d97 Mon Sep 17 00:00:00 2001 From: cniehaus Date: Sun, 16 Jun 2002 15:13:51 +0000 Subject: This adds the nice script provided by bruno. Thanks --- (limited to 'addLanguage.sh') diff --git a/addLanguage.sh b/addLanguage.sh new file mode 100755 index 0000000..7d8a296 --- a/dev/null +++ b/addLanguage.sh @@ -0,0 +1,35 @@ +#!/bin/bash + +# (c) 2002 Bruno Rodrigues +# Under GPL Licence + +# Add a new TRANSLATION line to every .pro file if there +# is already at least one TRANSLATION file and this LANG +# is not present +# The perl line would grab a TRANSLATION = something and +# duplicate it to TRANSLATION += .../LANG/... + +LANG=$1 + +if [ "$1x" == "x" ] ; then + echo "Usage: $0 " + exit +fi + +for i in `find . -name "*.pro"` ; do + grep TRANSLATIONS $i > /dev/null + if [ "$?" != 0 ] ; then + echo "$i: No Translations" + else + grep "../i18n/$LANG/" $i > /dev/null + if [ "$?" == 0 ] ; then + echo "$i: $LANG already there" + else + echo "$i: Adding $LANG" + perl -p -i.bak -e 's/^(TRANSLATIONS\s+)(([^+])?=)(.+?i18n\/)(.+?)(\/.+?)$/$1$2$4$5$6\n$1+=$4'$LANG'$6/' $i + fi + fi +done + + + -- cgit v0.9.0.2