For example, I have resource files

ru.properties en.properties kz.properties 

in folder

 tomcat/webapps/ROOT/resources/.. 

file contents:

 title=Моя страница 

How can the GWT address these resources + after compilation cached js were created with each localization.

I would like to do this:

 onModuleLoad() { Window.alert(MessageBundle.get("title")); )} 

or so:

 onModuleLoad() { MessageBundle.load("ru", new OnLoad(){ onload() { Window.alert(MessageBundle.get("title")); } } )} 

thank.

    1 answer 1

    Yes, read the same documentation finally. Everything is written there. And about static localization, and about Localizable, and about Dictionary

    You can also google a bunch of examples, for example .

    • Everywhere approaches are different. I have a specific one. Documentation can be read ... a lot and for a long time. And to see an example that solves the problem is much more effective. - Jenkamen