Hi! I'm trying to display a list of possible months in a queryset. I do so like this:
premonths = MyModel.objects.dates('date_published', 'month') months = [m.strftime('%B') for m in premonths] The problem is that months get displayed in english instead of spanish, which is what I want. I have the following setting in my settings file, but it does not seem to do what I want: LANGUAGE_CODE = 'es-ES' I can indeed work out a solution doing something like this: premonths = MyModel.objects.dates('date_published', 'month') import locale locale.setlocale(locale.LC_TIME, "sp") months = [m.strftime('%B') for m in premonths] But I guess I'm missing something here... BTW, the problem of the wrong locale of dates is everywhere I use dates on my site, not only in this snippet. Regards, Stefan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---