Mobilizon seems to be using some form of custom plural form format. How do I translate so that the translations will be fetched correctly?
My language’s plural rules usually work like this:
English source string:
1 cat|{count} cats
Fetched for numbers:
1|everything else
Translation:
{count} chat|{count} chait|{count} cait|{count} cat
Fetched for numbers:
1,11|2,12|3-10,13-19|everything else
Now I have a special case for number 0 in English:
No instance to approve|Approve instance|Approve {number} instances
If I expand my format to:
0 cat|{count} chat|{count} chait|{count} cait|{count} cat
Or:
0 cat|1 chat|{count} chat|{count} chait|{count} cait|{count} cat
Will it fetch the plurals correctly? Which of these formats can I use?