
<plurals> handles the grammar needed for numbers/quantities in various languages. Like in a number of slavic languages, numbers ending in 0, 1 or others have separate grammar. In English, there is just 1 and then all the rest (0 days, 2 days, 3 days, etc). <plurals> does not handle multiple strings for different quantities, like having a different string for each number case. For that, we have to do it in Java and have multiple <strings> !472