In my Django project, I'm using strftime, specifically %b
to get the abbreviated month name. Those names are returned in english. My settings contain the following:
LANGUAGE_CODE = 'de' # also tried 'de_DE'USE_I18N = TrueUSE_TZ = True
Why does strftime still return english language?