/
How to Translate Tab Labels in Dynamic Tabs
How to Translate Tab Labels in Dynamic Tabs
Available from 9.2
You can define translations for tab/step labels in Quotes, Rebate Agreements and Custom Forms. The setting is done in the JSON definition that is part of the predefined document template (Quote Type, Rebate Agreement Type, Custom Form Type).
Add the following code snippet to the tab/step definition:
"labelTranslations" : {
"" : "Default label",
"en" : "English label",
"de" : "German label"},
It must always contain the default label with an empty locale (““).
The translated label will be displayed in the corresponding language version of the user interface.
Example
In this example we specify two language versions for the Notes tab:
{
"name": "default",
"tabs": [
{
"icon": "clipboard-notes",
"name": "notes",
"type": "notes",
"labelTranslations": {
"": "Notes",
"de": "Notizen",
"pl": "Notatki"
}
},
...
See also Detail Page Layout and Dynamic Tabs.
, multiple selections available,
Related content
Detail Page Layout and Dynamic Tabs
Detail Page Layout and Dynamic Tabs
Read with this
How to Translate UI Labels Defined in Logics
How to Translate UI Labels Defined in Logics
More like this
Custom Form Type (CFOT)
Custom Form Type (CFOT)
Read with this
How To Translate Folder Management Buttons and Dialogs
How To Translate Folder Management Buttons and Dialogs
More like this
Dashboard Logic
Dashboard Logic
Read with this
Localization
Localization
More like this
Found an issue in documentation? Write to us.