...
After a language added you can click to "Details" button to edit localization texts. Emakin will be scan your process and list of texts to localize. Non localized texts will be marked as red but it's not mandatory. If do not localize original string is used.
Accessing from Scripting Environment
In some cases you may need access to localization texts in scripting environment. For example updating task instruction dynamically with localized equivalent.
...
Code Block | ||
---|---|---|
| ||
$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:
Code Block | ||
---|---|---|
| ||
$Localization.Label.Owner;
$Localization.Label.NameSurname; |