On Mar 12, 2:09 pm, kahawala <[email protected]> wrote: > Hi, > > I have a simple GWT application that uses both Messages and Constant > interfaces to do the internationalization. I want to show danish > special characters like "æ" in my danish version.
To make it simple, *all* of your files should be encoded in UTF-8: .java, .properties, .xml and .html And in your .html page, also make sure the browser interprets it as being UTF-8-encoded (browsers have a page encoding menu that shows you which encoding they thought the page was in). It generally is as simple as putting a <meta charset='utf-8'> in the HTML's head (though some server configuration could override it by sending an explicit charset= parameter in the Content-Type HTTP header). -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
