I would like to send localized date in JSON from django view
Normal text translation via
ugettext
is OK
Following
Finally i used date filter from django templates:
from django.template.defaultfilters import date as _date from datetime import datetime _date(datetime.now(), "d b, D")