Liquidsoul / LocalizationConverter

A command-line tool to convert mobile localization files
MIT License
15 stars 4 forks source link

Converter fails to parse format tags in Android strings.xml file #3

Closed Liquidsoul closed 8 years ago

Liquidsoul commented 8 years ago

Android strings resource can contain format tags <b>, <i> and <u>. The current implementation fails when one of this tag is used.

Example of strings.xml file:

<?xml version="1.0" encoding="UTF-8"?>
<resources>
    <string name="hello.world">Hello <b><u>world</u></b>!</string>
</string>
</resources>