This one is related to my previous post. Is it possible in GWT validation framework to specify location of ValidationMessages.properties
files and their names? I already have messages translations in my application and I'd prefer them to be in one location.
GWT validation framework, how to specify location of internationalization bundle
901 views Asked by Vic At
1
You could create a custom UserValidationMessagesResolver:
In the above code, ValidationConstants is the class resulting from running I18NSync on my properties file.
Then in *.gwt.xml:
You can find a complete example here.