Represents the localization information needed for parameter interpolation.
interface FormatData {
key: string;
locale: string;
params: string;
value: any;
}
The key of the translation item.
The code of the active language.
The localization patameters for the current value.
The value to insert formatted.