I'm working on a site and my customer is from Russia. He said that the month translation in the news is wrong.
For example, September:
- I get this from php:
Сентябрь
- and this from him:
Сентября
How can I overwrite this?
Clarification:
When using the locale ru_RU
, the name of the month outputted will be Russian. But according to my client the name of the months is wrong. I don't speak Russian so I have no idea if he's right or wrong
I just saw that if I translate the date from this: 8th of September 2011
to Russian it will look like this: 8 сентября 2011
. See the translation.
So the solution to the problem would probably be to rewrite the date format.
I haven't fixed this yet; apparently this is a bug/missing feature because of the advance Russian declensions. And the date format I need doesn't exist. I think this affects strftime
and PHP date()
.
Can someone verify this?