Class UmbLocalizationController<LocalizationSetType>

The UmbLocalizeController enables localization for your element.

UmbLocalizeElement

import { UmbLocalizeController } from '@umbraco-cms/backoffice/localization-api';

\@customElement('my-element')
export class MyElement extends LitElement {
private localize = new UmbLocalizeController(this);

render() {
return html`<p>${this.localize.term('general_close')}</p>`;
}
}

Type Parameters

Implements

Constructors

Properties

controllerAlias: symbol = LocalizationControllerAlias

Methods

  • Translates a string containing one or more terms. The terms should be prefixed with a # character. If the term is found in the localization set, it will be replaced with the localized term. If the term is not found, the original term will be returned.

    Parameters

    • text: unknown

      The text to translate.

    Returns string

    The translated text.

""