claudius-chat-widget
    Preparing search index...

    Interface ClaudiusTranslations

    Every user-facing string the widget renders. Pass a ClaudiusTranslations (or a partial override) to localize the UI. English is the source of truth; see defaultTranslations.

    interface ClaudiusTranslations {
        chatMessages: string;
        closeChat: string;
        dismissGreeting: string;
        errorConnection: string;
        errorGeneric: string;
        errorRateLimitHour: string;
        errorRateLimitMinute: string;
        errorRetry: string;
        errorTimeout: string;
        openChat: string;
        placeholder: string;
        sendMessage: string;
        subtitle: string;
        title: string;
        typeYourMessage: string;
        typingIndicator: string;
        welcomeMessage: string;
    }
    Index

    Properties

    chatMessages: string

    Accessible label for the message list region.

    closeChat: string

    Accessible label for the close button.

    dismissGreeting: string

    Accessible label for dismissing the greeting bubble.

    errorConnection: string

    Error shown when the network request fails.

    errorGeneric: string

    Generic fallback error message.

    errorRateLimitHour: string

    Error shown when rate-limited (per-hour limit).

    errorRateLimitMinute: string

    Error shown when rate-limited (per-minute limit).

    errorRetry: string

    Label for the retry action on a failed message.

    errorTimeout: string

    Error shown when a request times out.

    openChat: string

    Accessible label for the button that opens the chat.

    placeholder: string

    Placeholder text for the message input.

    sendMessage: string

    Accessible label for the send button.

    subtitle: string

    Chat window header subtitle.

    title: string

    Chat window header title.

    typeYourMessage: string

    Accessible label for the message input field.

    typingIndicator: string

    Accessible label for the typing indicator.

    welcomeMessage: string

    First assistant message shown when the chat opens.