How to turn off internationlization in askbot ?
In Settings.py, I read following.
If you set this to False, Django will
make some optimizations so as not
to load the internationalization
machinery.
USE_I18N = True LANGUAGE_CODE = 'en'
But when I turn it off, I hit assertion failure in startup_procedures.py
'USE_I18N': {
'value': True,
'message': 'Please set USE_I18N = True and\n'
'set the LANGUAGE_CODE parameter correctly'
},
Is it some kinda of regression bug ? Is there any way I can turn off internalization ?
Comments