Yes. You can customize nearly all text elements in the Unlayer editor’s interface using the Overriding Translations feature available in the localization settings. This allows you to rename labels, tabs, buttons, and other UI text to match your product’s terminology or language requirements.
For full details, refer to the documentation:
Docs: https://docs.unlayer.com/docs/localization#overriding-translations
Example configuration:
unlayer.init({
...
locale: 'en-US',
translations: {
'en-US': {
"tools.tabs.content": "<New name for content>",
"tools.tabs.row": "<New name for row>"
}
}
});
By defining translation keys under the chosen locale, the editor will replace the default text with your custom labels.
