I have a bit of a problem with internationalization in Symfony 1.4. For example let's say we have a word 'mois' which in French language means 'month' and also 'months'. So when I'm using i18n extract, I'm getting back only one option - mois, but I need to translate it either 'month' or 'months' depending on a situation. How can I get xml with two options?
I know about format_number_choice method, which gives me a good possibility to work with translations depending on value, but is there maybe some better way to extract that data without using this method?