Dashboard > Tempo > Home > i18n > View
Tempo Log In   View a printable version of the current page.
i18n
Added by Nicolas Modrzyk, last edited by Nicolas Modrzyk on Jun 02, 2008

Internationalization of the UI-FW

Modifying the default language settings

To Modify the default language ( in this example, we are going to set the language as japanese ):

  • Open the file SERVER_PATH\var\config\tempo-ui-fw.xml.
  • Add the following bean in the "beans" tag :

    <bean id="localeResolver" class="org.springframework.web.servlet.i18n.FixedLocaleResolver">
    <property name="defaultLocale" value="ja" />
    </bean>

  • Restart your server.

If you want to set the language according to the language of the user ( the language settings of the browser) :

  • Open the file SERVER_PATH\var\config\tempo-ui-fw.xml.
  • Add the following bean in the "beans" tag :

    <bean id="localeResolver"
    class="org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver">
    </bean>

  • Restart your server.

Adding another language

The Intalio UI-FW currently supports an english and japanese versions. To add another language :

  1. Go to SERVER_PATH\repository\org\intalio\tempo\ui-fw\5.2.0.19\ui-fw-5.2.0.19.war\WEB-INF\classes ( the path will slightly change depending on your server version).
  2. copy and paste messages_en.properties and rename it. ( messages_fr.properties for french, messages_sp.properties for spanish...).
  3. Translate the values of the properties in the file.
  4. Modify the default language settings ( see above).
  5. restart your server.

Site powered by a free Open Source Project / Non-profit License (more) of Confluence - the Enterprise wiki.
Learn more or evaluate Confluence for your organisation.
Powered by Atlassian Confluence, the Enterprise Wiki. (Version: 1.4.1 Build:#212 Jun 02, 2005) - Bug/feature request - Contact Administrators