I understand that if the gwt application needs to support multiple locale values, all of them should be configured in module xml as
<extend-property name="locale" values="de"/>
<extend-property name="locale" values="es"/>
and then the GWT will decide which locale to load run time using either query string or meta tag in host page.
But, for the application to support all the locales available, how should i configure in module xml file? Should i add extend-property tag for all the locales or is any other configuration available for this? Please advice.