Currently, all JavaScript files are served from our static / media directory in the top-level project directory. When makemassages -d djangojs it will generate a locale directory at the top level.
However, javascript_catalog will only consider locale directories created in applications, that is, those listed in the INSTALLED_APPS setting.
What is the correct way to create makemessages and javascript_catalog to work in tandem to actually use the i18n JavaScript functionality?
Move js files to application directory and some static directories (not attractive imho, I am currently serving static files via nginx and this, by the way, clutter up conf)?
I am using Django 1.1
source share