Skip to content

Internationalization (Formats for Number, Currency, Date and Time entries)

These settings control the display of numbers, currencies, time and date data as well as translated texts (for example, in pickup fields).

  • Provide a general FormatLCID as the basis for all numbers, currencies, dates and times. The default values ​​for each country can be overridden.
  • Provides a TranslationLCIS to localize the information from the crm system.
  • Pre setting a TimeZone to convert all time values.

If no settings are available, the settings of the currently logged on user are used.

Image title

The current user settings contain all the informatin necessary for internationalization and can be used as defalt if no other settings are available.


Numbers:

  • Specify the decimal separator
  • Specify the group separator and the group size
  • Presetting the formatting of negative numbers

Currency

  • The display corresponds to the number format
  • Formatting for negative and positive currency amounts

Time

  • Patterns for all time formats
  • Separator to use for hours, minutes and seconds
  • Texts of the morning and afternoon indicators for 12h time formats

Date

  • Patterns for all date formats
  • Separator to use for years, months and days

I18NConfiguration

You can change any of those settingy by adding a I18NConfiguration to your i18n:DataSource

 <i18n:I18NConfiguration />

configured by template

You can set the document language within the OfficeIntegration template itself. You can configure the DataSource to use the Setting configured within the template by adding the following node to your i18n:DataSource.

 <i18n:I18NConfiguration UseTemplateConfiguration="true" />

With this configuration the DataSource is set to use the LCID configured within the document language of the template. By using this property the same DataSource can be used for multiple templates (different languages).

order

The UseTemplateConfiguration will override any TranslationLCID configuration, but not any specific configuration (e.g.: a specific time configuration).

setting the LCID

You can change any of those settings by setting a value. For example if you want to change the Format and Translation LCID to German you can add the 1031 LCID:

 <i18n:I18NConfiguration TranslationLCID="1031" TranslationLCID="1031" />

just an example

The example above is just an example how to set multiple properties. Setting the FormatLCID will set all properties to 1031, there is no need for an additional setting of the TranslationLCID as this is already included within the TranslationLCID.