This key contains the bundle name that provides the configuration specific to Multilingual Module.
Config Key | Mandatory/ Optional | Type | Purpose |
---|---|---|---|
CT_PROPERTY_LABELS | Mandatory | String | This key is used to provide the property file that CT uses to display label texts, list values in drop-down, error messages, and alerts. |
CT_LANG_COUNTRY_CODE | Mandatory | String | This key is used to provide the supported locale keys.More than one language_Country codes are added with ',' separator |
DEFUALT_PATH_FOR_BUNDLE | Mandatory | String | This key is used to provide the default temp folder in the server system for the canvas application activity. For example:- For windows - /Temp& For unix/linux - /Temp |
CT_LABELS_OVERRIDE_BUNDLE_NAME | Optional | String | This key is used to provide the properties file, which overrides the default canvas provided labels. |
The following is a sample multilingual configuration file multilingualconfig.properties (as per the name given in the default descriptor):
Code Block | ||
---|---|---|
| ||
# canvas.properties file will be an default one. other properties will be added with ',' separator |
...
CT_PROPERTY_LABELS=common |
...
# Supported locals; More than one language_Country codes will be added with ',' separator |
...
CT_LANG_COUNTRY_CODE=en_US,de_DE,ar_SA |
...
# This will the default temp folder in the server system for the canvas application activity. |
...
# example folder structure |
...
# for windows - D:/Canvas/Temp |
...
# for unix/linux - /usr/SIR0654/Canvas/Temp |
...
# This path configured should be relative to the root path configured as CT_WORK_FOLDER_PATH in implementation property file. |
...
DEFUALT_PATH_FOR_BUNDLE=/Temp |
...
# This will be used to override the default canvas provided labels. |
...
CT_LABELS_OVERRIDE_BUNDLE_NAME =modelhouse |