aboutsummaryrefslogtreecommitdiffstats
path: root/main/project/attributes/listEnStrings.sh
diff options
context:
space:
mode:
Diffstat (limited to 'main/project/attributes/listEnStrings.sh')
-rwxr-xr-xmain/project/attributes/listEnStrings.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/main/project/attributes/listEnStrings.sh b/main/project/attributes/listEnStrings.sh
new file mode 100755
index 0000000..1fae240
--- /dev/null
+++ b/main/project/attributes/listEnStrings.sh
@@ -0,0 +1,23 @@
+#!/bin/bash
+
+require () {
+ hash $1 2>&- || { echo >&2 "I require $1 but it's not installed. Aborting."; exit 1; }
+}
+
+require sed
+require cut
+
+stringfile="../../res/values/strings.xml"
+
+cat iconlist.txt | grep -v "^#" | while read l; do
+ name=`echo $l | cut -d "|" -f 1 | sed "s/ *//g"`
+ att=attribute_${name}_
+ for yn in yes no; do
+ line="`grep ${att}${yn} $stringfile`"
+ if [ -z "$line" ]; then
+ echo " <string name=\"${att}${yn}\"</string>"
+ else
+ echo "$line"
+ fi
+ done
+done