I have a rails app which is localized in multiple languages. Some time for the localization to complete it takes more time after the some enhancements are done in english language. So it was decided to release the latest version of the website in english language. and retain the older version for other non-english languages. So that the release dates need not be pushed till localization were complete. I am not sure how to implemented. Any idea about how should i go about doing it will be very helpful.
Thanks
seeing your comments to Chubas’s answer You can bind to
http://website.comsimple application which will check user’s locale (or whatever else) and redirect him tohttp://website.com/enorhttp://website.com/int, each running a separate application.It may seem not very pretty, but it’s simple and many enterprise websites actually use it. With a bit more setupping you can even have configurable names like
fr,de, etc. instead ofint(all pointing to the same application).