Properly unescape double quotes in android files.
This commit is contained in:
parent
949314fb16
commit
6f286dc159
1 changed files with 1 additions and 0 deletions
|
@ -40,6 +40,7 @@ module Twine
|
|||
key = ele.attributes["name"]
|
||||
value = ele.text || ''
|
||||
value.gsub!('\\\'', '\'')
|
||||
value.gsub!('\\"', '"')
|
||||
value.gsub!(/\n/, '')
|
||||
value.gsub!('%s', '%@')
|
||||
set_translation_for_key(key, lang, value)
|
||||
|
|
Reference in a new issue