Strategy One

Translations

The translations section allows you to translate object names and descriptions. It maps locale IDs to specific localized text strings.

Structure

Translations can be applied to the top-level name and description fields of an object and to nested elements such as attribute forms.

Field Type Description Example

targetName

String

The internal name of the translated property.

"Object Name"

translationValue Object Map where keys are numeric Locale IDs (LCIDs) and values contain the translation string. [ { name: "Month" } ]

Common Locale IDs

Example

See the following translations file example:

Copy
translations:
  name:
    targetName: "Object Name"
    translationValues:
      1033:
        translation: "Call Center"
      1036:
        translation: "Centre d'appels"
  description:
    targetName: "Object Description"
    translationValues:
      1033:
        translation: "The geographical location of the call center."
  forms: # Specific for attributes
    "45C11FA478E745FEA08D781CEA190FE5": # Attribute Form ID
      name:
        targetName: "Attribute Form Name"
        translationValues:
          1033:
            translation: "Call Center ID"