Skip to content

$Localization

Overview

Allows to access localization dictionary entries from scripting environment.

Dictionary entries has dynamic properties depending on defined dictionary entries object and accessed in following format:

$Localization.<Group>.<Source Text>

Group
Name of localization group. You can find group name from "Group" column in localization list.

Source Text
Key of localization entry. All of non valid characters like spaces or punctuation characters (e.g. %, ?, - ) are removed and keys are generated only from a-z or A-Z or 0-9 characters.

For example you can use following keys:

var ownerLabel = $Localization.Label.Owner;
var nameSurnameLabel = $Localization.Label.NameSurname;