Why is this working?
<string name="quantity_geoFormat">"%s"</string>
And this not?
<string name="quantity_geoFormat">"%s %s"</string>
For the second I am getting this error: Multiple substitutions specified in non-positional format;
You need to use the positional substitution format, which looks like this: %1$s
.
Thus your second string resource should look like this:
<string name="quantity_geoFormat">"%1$s %2$s"</string>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With