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.