2👍
✅
There are some resources you might want to see:
- http://docs.djangoproject.com/en/dev/topics/i18n/
- http://docs.djangoproject.com/en/dev/topics/i18n/internationalization/
- http://www.djangobook.com/en/1.0/chapter18/
Python’s gettext
and locale
module might also be useful.
0👍
One big change in your project: you need to build in time to localize your strings. Depending on your schedules, you may have to rearrange work so that all the string-changing work is at the front so that you have time to get the translations done before launching.
Or, alternately, you have to build in a buffer at the end to account for it.
- [Answered ]-Serving protected files with Django and Nginx X-accel-redirect
- [Answered ]-Can you put static folder in project root, rather than app root?
- [Answered ]-Django: Limit user's session by time
Source:stackexchange.com