Locales in GWT are set global.
You can set local, for example. in the meta tag in your html file:
<html><head><meta name="gwt:property" content="locale=it">...
and you should add the locale to the * .gwt.xml module file:
<extend-property name="locale" values="it"/>
Properties are defined here:
com.google.gwt.i18n.client.constants.DateTimeConstantsImpl_xx.properties
Read the documentation for more details.
source share