vaadin- how to create multi language versions of a java web app

Hi,

I am a beginner at using Vaadin for designing the UI of my java web app.

What I want to know is, how do I develop multi-language versions of my app- I will use Vaadin for the UI and I will use Eclipse for design/coding…

Regards,
Arvind.

You can do the standard way it is done in the Java world. you have properties files and a class that looks up the correct string based on which locale is selected in some dropdown.

Look for example at
http://www.irt.org/articles/js179/
for one example or google I18N or java localization.

This might be helpful:

https://vaadin.com/book/-/page/rapid.i18n.html

Oh, I wasn’t aware that the book had a chapter like that. cool.