Changeset 916
- Timestamp:
- 10/17/05 14:45:56 (3 years ago)
- Files:
-
- django/branches/i18n/docs/translation.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/i18n/docs/translation.txt
r915 r916 183 183 into the picture. You need to add it to your middleware setting. It should 184 184 be one of the first middlewares installed, but it should come after the 185 session middleware - that's because it makes uses of the session data. 185 session middleware - that's because it makes uses of the session data. And 186 it must be installed before the AdminUserRequired middleware, as that will 187 do redirects based on not-logged-in state and so the LocaleMiddleware won't 188 ever see the login page (and so not initialize the language correctly). 186 189 187 190 So your middleware settings might look like this::
