@suluk/i18n - v0.1.0
    Preparing search index...

    Interface CompletenessGrade

    interface CompletenessGrade {
        locale: string;
        total: number;
        translated: number;
        missing: string[];
        extra: string[];
        grade: number;
    }
    Index

    Properties

    locale: string
    total: number

    keys in the default catalog (the target).

    translated: number

    keys present AND non-empty in this locale.

    missing: string[]

    keys in the default catalog absent or empty here.

    extra: string[]

    keys present here but not in the default (stale / typo'd).

    grade: number

    translated / total, in [0, 1] (1 when the default is empty).