Colibrio Reader Framework API - Cloud license
    Preparing search index...

    Represents a Localizable String as defined in the Web Publication specification.

    https://www.w3.org/TR/pub-manifest/#dfn-localizablestrings

    interface IWpLocalizableString {
        direction?: "ltr" | "rtl";
        language?: string;
        value: string;
    }

    Properties

    direction?: "ltr" | "rtl"

    The direction of text. Note that some text values might instead use the Unicode character RIGHT-TO-LEFT (U+200F)

    language?: string

    A BCP 47 language tag

    value: string

    The string contents.