GWT gets locale from either the locale property or the locale query string. If neither is specified, it uses the "default" (ie en_US) locale.

Why doesn't it get it from the browser settings?

It seems the only solution to this is to replace your static html launch page with soemthing like a JSP that reads the browser locales and sets the locale or redirects using the query string. There has to be a better solution than this or simply hard-coding a locale, surely?

link|improve this question

feedback

3 Answers

If you put a list of available languages into your *.gwt.xml file it will by default switch to the first language listed.

<!-- Slovenian in Slovenia -->
<extend-property name="locale" values="sl"/>

<!-- English language, independent of country -->
<extend-property name="locale" values="en"/>
link|improve this answer
I had this where I had en_AU added as the only extend-property and it defaulted to "default" still. It took the locale query parameter or <meta> tag to actually get it to en_AU. I can't imagine just "en" would be any different but, even if it were, that wouldn't help. I don't want en_US. – cletus Oct 2 '08 at 14:36
feedback

You can also put this switch in your *.gwt.xml

<set-configuration-property name="locale.useragent" value="Y"/>

this will add language selecting based on language selected in browser. You can also control search order for locale by setting

  <set-configuration-property name="locale.searchorder" value="queryparam,cookie,meta,useragent"/>

But beware that in IE this doesn't work - you should develop server-side language pick based on 'Accept-Language' header send by the IE.

link|improve this answer
feedback

If your entry page is a JSP you can inspect the request's "Accept-Language" header to dynamically set the locale.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.