Interface LanguagePackString

Represents one language pack string.

interface LanguagePackString {
    @type: "languagePackString";
    key: string;
    value: LanguagePackStringValue;
}

Properties

Properties

@type: "languagePackString"
key: string

String key.

String value; pass null if the string needs to be taken from the built-in English language pack.