I have a Django application. Localising this into multiple languages is a simple and straightforward but one part of the site is an complex rich internet application. This part of the site allows the user to his workspace mode.
Everything remains the same but the terminology changes. e.g.
www.exmaple.com/myria/chemist
www.exmaple.com/myria/biologist
www.exmaple.com/myria/physicist
myria
is my rich internet application. The words chemist
, biologist
and physicist
merely denote the workspace. The whole Django application itselt uses the same codebase and nothing else changes.
I'm using django-rosetta to manage translating and django-localeurl to provide URL based locale switchin (on normal parts of the site).
I'm at my wits end on how to accomplish this. Maybe some kludging with the sites framework?