summaryrefslogtreecommitdiff
authorcniehaus <cniehaus>2002-06-16 15:13:51 (UTC)
committer cniehaus <cniehaus>2002-06-16 15:13:51 (UTC)
commit0704b913f5da703218f66ddc18a4c6b280577d97 (patch) (unidiff)
treea8edef8565de586043be70c2400a999cd9b74738
parent47f58b07e3718500193262bf4a0a2d13c9b7d539 (diff)
downloadopie-0704b913f5da703218f66ddc18a4c6b280577d97.zip
opie-0704b913f5da703218f66ddc18a4c6b280577d97.tar.gz
opie-0704b913f5da703218f66ddc18a4c6b280577d97.tar.bz2
This adds the nice script provided by bruno. Thanks
Diffstat (more/less context) (show whitespace changes)
-rwxr-xr-xaddLanguage.sh35
1 files changed, 35 insertions, 0 deletions
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 @@
1#!/bin/bash
2
3# (c) 2002 Bruno Rodrigues <bruno.rodrigues@litux.org>
4# Under GPL Licence
5
6# Add a new TRANSLATION line to every .pro file if there
7# is already at least one TRANSLATION file and this LANG
8# is not present
9# The perl line would grab a TRANSLATION = something and
10# duplicate it to TRANSLATION += .../LANG/...
11
12LANG=$1
13
14if [ "$1x" == "x" ] ; then
15 echo "Usage: $0 <LANG>"
16 exit
17fi
18
19for i in `find . -name "*.pro"` ; do
20 grep TRANSLATIONS $i > /dev/null
21 if [ "$?" != 0 ] ; then
22 echo "$i: No Translations"
23 else
24 grep "../i18n/$LANG/" $i > /dev/null
25 if [ "$?" == 0 ] ; then
26 echo "$i: $LANG already there"
27 else
28 echo "$i: Adding $LANG"
29 perl -p -i.bak -e 's/^(TRANSLATIONS\s+)(([^+])?=)(.+?i18n\/)(.+?)(\/.+?)$/$1$2$4$5$6\n$1+=$4'$LANG'$6/' $i
30 fi
31 fi
32done
33
34
35