Dockview
    Preparing search index...

    Interface DockviewMessages

    The full set of localisable strings dockview speaks to assistive technology: the LiveRegion announcements and the keyboard-docking narration. Each entry returns the complete sentence so a translator owns wording and word order.

    Override any subset via the messages option; unset entries keep the English defaults below. For fine-grained, per-event announcement overrides (with access to the panel) use getAnnouncement, which takes precedence.

    interface DockviewMessages {
        groupDocked(title: string): string;
        groupFloated(title: string): string;
        groupMaximized(title: string): string;
        groupPoppedOut(title: string): string;
        groupRestored(title: string): string;
        moveCancelled(): string;
        moveCommitted(source: string, target: string, position: Position): string;
        moveNotAllowed(): string;
        movePickEdge(position: Position, target: string): string;
        movePickTarget(
            source: string,
            target: string,
            current: number,
            total: number,
        ): string;
        panelClosed(title: string): string;
        panelOpened(title: string): string;
    }
    Index

    Methods

    • Target phase: which group is highlighted, and how to proceed.

      Parameters

      • source: string
      • target: string
      • current: number
      • total: number

      Returns string