Re: Template filters and translations to russian language

2012-03-07 Thread Denis Darii
Try to change also the language of your browser, this because you have LANGUAGES = (('ru', 'Russian'), ('en_US', 'English')) and probably in your browser is set EN. Or force it to RU: from django.utils.translation import activate activate('ru') On Wed, Mar 7, 2012 at 12:20 PM, Tom Evans wrote

Re: Template filters and translations to russian language

2012-03-07 Thread Tom Evans
On Wed, Mar 7, 2012 at 9:38 AM, filias wrote: > Hi, > > I am developing a website in russian and the original is in english. We are > using the po file to translate the strings. > > My problem now is that when I use template filters, for example date or > localnaturalday the translations do not ap

Template filters and translations to russian language

2012-03-07 Thread filias
Hi, I am developing a website in russian and the original is in english. We are using the po file to translate the strings. My problem now is that when I use template filters, for example date or localnaturalday the translations do not appear. Everything appears in english. However, if I chang