I have a problem with formatted string in arabic and titanium.
Currently i have a dictionary which contains the string used in the app, something like this:
var myDictionary = {mystring: 'hello %s'};
then the string is formatted with String.format and displayed in a label.
Now the problem is that i cannot insert %s in an arabic string, because from RTL became LTR
Arabic string without %s
?? ???? ?????? ??? ????? ???????
Arabic string with %s
?? ???? ?????? %s ??? ????? ???????
i've read about inserting special character but i had not success in that. How can i create a formatted string for the arabic language?