You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For instance, my values/strings.xml can have this:
<string name="about_text2">This android app was developed by <a href="http://murrayc.com/">Murray Cumming</a></string>
And my values-de/strings.xml can have this translation:
<string name="about_text2">Diese Android App wurde von <a href="http://murrayc.com/">Murray Cumming</a> entwickelt.</string>
However, when I export and import with a2po, that translation changes to:
<string name="about_text2">"Diese Android App wurde von "<a href="http://murrayc.com/">Murray Cumming</a>" entwickelt."</string>
Notice the extra quotes around the whole string and around the markup. Android seems to ignore them, and they don't appear in the .po file when I export again, but it's pretty strange. I'd feel better if I knew that it's really legal and correct.
The text was updated successfully, but these errors were encountered:
Unescaped markup is apparently normal in Android strings.xml files, according to:
http://developer.android.com/guide/topics/resources/string-resource.html
For instance, my values/strings.xml can have this:
And my values-de/strings.xml can have this translation:
However, when I export and import with a2po, that translation changes to:
Notice the extra quotes around the whole string and around the markup. Android seems to ignore them, and they don't appear in the .po file when I export again, but it's pretty strange. I'd feel better if I knew that it's really legal and correct.
The text was updated successfully, but these errors were encountered: