Force Django Admin into a Single Language
In admin/middleware.py: Then register the middleware in settings/__init__.py: What’s happening? We are running this middleware before every request where we check if the path matches our admin section’s path, and then temporarily changing the language with translation.override(‘en’), which is changed back to the previous language after the middleware runs. Confirmed as working in Django 3.2, […]