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
One of the strings of this app contains illegal characters, except I believe they are correct:
Some character\'s are considered illegal in \'xml\' format and are not acceptable! Please be noted that the entire text will be neglected (or even app crashes in the worst case) when an illegal character is detected!\n\nSome of the prohibited character\'s includes, but not limited to\n& - except for certain words\n< and > -except for certain cases such as <b>, </b>, <i>, </i> etc.\nSingle (\') or double (\") quotation marks without a backward slash (\\) in the front, etc.
The issue seems to be with >b<. This prevents me from translating it properly. Are you interpreting it twice?
How about making all characters legal and escaping when saving the string instead? That would be much less confusing for translators.
The text was updated successfully, but these errors were encountered:
No, the mentioned character will be shown in the app as '< b >' (without space before and after the b). Also, the problem for making all characters legal is the following
The app will currently write to the XML string (saved on the internal directory) when the user clicks the update. If app tries to save a string with illegal characters without that checking, it is very likely that the app will crash or even the string becomes corrupted. I really don't have any better solution to solve this issue at this moment.
One of the strings of this app contains illegal characters, except I believe they are correct:
The issue seems to be with
>b<
. This prevents me from translating it properly. Are you interpreting it twice?How about making all characters legal and escaping when saving the string instead? That would be much less confusing for translators.
The text was updated successfully, but these errors were encountered: