Why is django.contrib.admin
in English even though I set LANGUAGE_CODE = 'pl'
in the settings?
LANGUAGE_CODE = 'pl'
TIME_ZONE = 'Europe/Warsaw'
USE_I18N = True
USE_L10N = True
USE_TZ = False
LANGUAGES = (
('en', _('English')),
('pl', _('Polish')),
)
Deleting ('en', _('English')),
from LANGUAGES
helps but I need it from django-rosetta.
Thank you.
Simply add this in your settings file.I tested it and works fine.
When user logged in django admin needs it shows polish by default.Some words are shown in english. Still problem is not solved share the screen shot of the django admin.