Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Change language (static)

    I like to change the language from default to Norwegian (locale=nb_NO) in my SmartGwt app. I have tried this:
    added <meta name="gwt:property" content="locale=nb_NO"> to the head of my app.html. But the locale is still default (LocaleInfo.getCurrentLocale().getLocaleName() = default) and the text on the UI components are still English.

    I do not need support for several languages. Only one permanent change to Norwegian.

    Do I need to download some language file?
    Any help pleas?

    ---------
    SmartClient Version: v8.3p_2013-05-05/PowerEdition Deployment (built 2013-05-05)

    Firefox 21.0

    #2
    Assume that you also have something like that
    Code:
        <extend-property name="locale" values="nb_NO"/>
        <set-property-fallback name="locale" value="nb_NO"/>
    in your app.gwt.xml ?
    MichalG

    Comment


      #3
      Thank you!
      Those two lines solved the problem

      Comment

      Working...
      X