Interface IJsonDataHeader

Metadata for a language pack.

interface IJsonDataHeader {
    domain: string;
    language: string;
    pluralForms: string;
}

Properties

domain: string

The domain of the translation, usually the normalized package name. Example: "jupyterlab", "jupyterlab_git"

Note

Normalization replaces - by _ in package name.

language: string

Language locale. Example: es_CO, es-CO.

pluralForms: string

String describing the plural of the given language. See: https://www.gnu.org/software/gettext/manual/html_node/Translating-plural-forms.html