In Android strings, you can define plurals to handle translations depending on the actual number supplied to the string as described here.
Strings also allow for specifying multiple positional parameters similar to what sprintf
does in many languages.
However, consider the following string:
<resources>
<string name="remaining">%1$d hours and %2$d minutes remaining.</string>
</resources>
It contains two numbers, how would I transform this to a plural in Android? All examples always work with a single parameter only. Is this even possible?