How do I use NSLocalizedString to build a string with multiple parameters while giving the translator control to change the order if they wish?
An example in my Loca
According to the documentation
https://developer.apple.com/library/ios/documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html#//apple_ref/doc/uid/TP40004265-SW2
Note that you can also use the “n$” positional specifiers such as %1$@ %2$s
So you can simply create your string as
"score_out_of"="Your score is %1$i out of %2$i"
And in other language, it could be
"score_out_of"="Out of %2$i, your score is %1$i"