Gribbie wrote: > Soory - that should read "...when I got to the next screen the selected > language is lost and so the page is in English"
Check your settings.py: MIDDLEWARE_CLASSES = ( "django.middleware.common.CommonMiddleware", "django.contrib.sessions.middleware.SessionMiddleware", "django.contrib.auth.middleware.AuthenticationMiddleware", 'django.middleware.locale.LocaleMiddleware', "django.middleware.doc.XViewMiddleware", ) gettext_noop = lambda s: s # fake gettext - because new USE_I18N option don't allow to import from translation LANGUAGE_CODE = 'nl' # default language LANGUAGES = ( ('nl', gettext_noop('Nederlands')), ('en', gettext_noop('English')), ) -- Nebojša Đorđević - nesh Studio Quattro - Niš - SCG http://studioquattro.biz/ http://djnesh.blogspot.com/ | http://djnesh-django.blogspot.com/ | http://trac.studioquattro.biz/djangoutils/ Registered Linux User 282159 [http://counter.li.org] --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers -~----------~----~----~----~------~----~------~--~---