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 = True
USE_TZ = True
Why does strftime still return english language?
There's a few things you could try:
de-detoLANGUAGE_CODE.LOCALE_NAME = 'de_DE'import localeandlocale.setlocale(locale.LC_TIME, 'de_DE')(orde_DE.utf8')