aboutsummaryrefslogtreecommitdiffstats
path: root/main/project/attributes/listEnStrings.sh
diff options
context:
space:
mode:
authorkoem <koem@petoria.de>2013-02-09 18:14:29 +1300
committerkoem <koem@petoria.de>2013-02-11 08:16:24 +1300
commit8bc22701fbef17c24de6f2f8af282da08eba5766 (patch)
tree7f81de606dab7eb5dab6d20cac2af1c00b99ceba /main/project/attributes/listEnStrings.sh
parent509cefa3af847129bf40cff15437183d950752a7 (diff)
downloadcgeo-8bc22701fbef17c24de6f2f8af282da08eba5766.zip
cgeo-8bc22701fbef17c24de6f2f8af282da08eba5766.tar.gz
cgeo-8bc22701fbef17c24de6f2f8af282da08eba5766.tar.bz2
Icons for OC
- new icons for opencaching - changed some icons because of copyright - english strings for opencaching attributes - german strings for opencaching attributes - new script to show (missing) strings for attributes - new script to edit svg files from thenounproject.com - new script to generate enums - ocicons.html: list of all OC icons
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