From 2424b889df856c91156433b4e6397e9bd1eec67b Mon Sep 17 00:00:00 2001 From: "Runa A. Sandvik" Date: Fri, 17 Sep 2010 21:01:05 +0000 Subject: [PATCH] thanks to Clint for fixing my regex svn:r23220 --- po2xml.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/po2xml.sh b/po2xml.sh index c49af62a..806b47e4 100755 --- a/po2xml.sh +++ b/po2xml.sh @@ -15,12 +15,12 @@ # Location of the translated files, i.e. the path to the orbot # directory in the translation module. Do not add the trailing slash. -translated="" +translated="/home/runa/tor/translation/projects/orbot" # Location of the orbot directory, i.e. the original English xml file. # In svn, this should be svn/projects/android/trunk/Orbot/res. Do not add the # trailing slash. -xml="" +xml="/home/runa/tor/orbot/res" ### End config ### @@ -57,7 +57,8 @@ for file in $po ; do mv "$xml/values-$lang/tmp-$xmlfile" "$xml/values-$lang/$xmlfile" # We need to escape apostrophe's - sed -i "s,',\\\',g" "$xml/values-$lang/$xmlfile" + # sed -i "s,',\\\',g" "$xml/values-$lang/$xmlfile" + sed -i "s/\([^\\]\)'/\1\\\\'/g" "$xml/values-$lang/$xmlfile" fi }