Alokai

LocaleItem

A selectable locale, pairing a human-readable label with its internal name.

interface LocaleItem {
	label: string;
	name: string;
}

Properties

NameRequiredTypeDescription
labelRequiredstringHuman-readable label for the locale.
nameRequiredstringInternal name/identifier of the locale.

On this page