I have some arabic text in the app that has parameters.
<string name="text_1">s$1% نقطة إلى s%2$</string>
The problem is that IDE shows an error when I am using this string
Format string text_1 is not a valid format string so it should not be passed to String.format
For english I have
<string name="text_1"> %1$s beans to %2$s</string>
which is working just fine.
edit:
So, 1,3 & 4 are working just fine, the problem is with 2
How i need to format my arabic parameters to be ok?