I have two servers which look identical. However, one runs the Django test page with en_gb the other doesn't. What is even more strange is everything was running as expected a few months back. I upgraded Django to 1.1.1 and using en_gb no longer works. I tried going back to the previous Django version but it makes no difference.
Any suggestions as to how I can analyse this problem would be appreciated. These are the steps I am taking: django-admin.py startproject testtest ... python2.5 manage.py runserver 0.0.0.0:8800 It worked! Change en_us to en_gb Validating models... 0 errors found Django version 1.1.1, using settings 'testtest.settings' Development server is running at http://0.0.0.0:8800/ Quit the server with CONTROL-C. Unhandled exception in thread started by <function inner_run at 0xb78abc34> Traceback (most recent call last): File "/usr/lib/python2.5/site-packages/django/core/management/ commands/runserver.py", line 56, in inner_run translation.activate(settings.LANGUAGE_CODE) File "/usr/lib/python2.5/site-packages/django/utils/translation/ __init__.py", line 73, in activate return real_activate(language) File "/usr/lib/python2.5/site-packages/django/utils/translation/ trans_real.py", line 205, in activate _active[currentThread()] = translation(language) File "/usr/lib/python2.5/site-packages/django/utils/translation/ trans_real.py", line 194, in translation default_translation = _fetch(settings.LANGUAGE_CODE) File "/usr/lib/python2.5/site-packages/django/utils/translation/ trans_real.py", line 160, in _fetch res._info = res._info.copy() AttributeError: 'NoneType' object has no attribute '_info' Django 1.1.1 Python 2.5.2 Debian Lenny The only installed locale is en_GB.UTF-8 (although I have tried en_US.UTF-8 too). LANG=en_GB.UTF-8 LC_CTYPE="en_GB.UTF-8" LC_NUMERIC="en_GB.UTF-8" LC_TIME="en_GB.UTF-8" LC_COLLATE="en_GB.UTF-8" LC_MONETARY="en_GB.UTF-8" LC_MESSAGES="en_GB.UTF-8" LC_PAPER="en_GB.UTF-8" LC_NAME="en_GB.UTF-8" LC_ADDRESS="en_GB.UTF-8" LC_TELEPHONE="en_GB.UTF-8" LC_MEASUREMENT="en_GB.UTF-8" LC_IDENTIFICATION="en_GB.UTF-8" LC_ALL= >>> import locale >>> locale.getdefaultlocale() >>> ('en_GB', 'UTF8') ls -l /usr/lib/python2.5/site-packages/django/conf/locale/en/ LC_MESSAGES total 96 -rw-r----- 1 root root 358 2008-09-03 06:42 djangojs.mo -rw-r----- 1 root root 2693 2008-09-03 06:42 djangojs.po -rw-r----- 1 root root 572 2008-09-03 06:42 django.mo -rw-r----- 1 root root 81056 2008-09-03 06:42 django.po -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.