Is there some common solution or best practice how to implement localized URL string and routes in (java) Play! application?
we need routes like this:
/examples/demonstration
/esempi/dimostrazione
/przyklady/demonstracji
…(10+ languages)
All URLs naturally pointing to controller Examples and action demonstration.
Thanks in advance!
Perhaps you can do something like this:
For English:
For Dutch:
Etc etc..
Credits: http://playframework.wordpress.com/2011/07/15/hidden-features-of-the-play-framework-routes-file/
Good luck