Hiyve Components - v1.0.0
    Preparing search index...

    Interface VideoTileLabels

    Customizable text labels for VideoTile component. All labels support internationalization (i18n) by allowing custom strings.

    // Spanish localization
    const spanishLabels: Partial<VideoTileLabels> = {
    handRaised: 'Mano levantada',
    muted: 'Silenciado',
    cameraOff: 'Cámara apagada',
    fullscreen: 'Pantalla completa',
    exitFullscreen: 'Salir de pantalla completa'
    };

    <VideoTile labels={spanishLabels} />
    interface VideoTileLabels {
        cameraOff: string;
        engagementLabel: string;
        exitFullscreen: string;
        fillVideo: string;
        fitVideo: string;
        fullscreen: string;
        handRaised: string;
        moodLabels: Record<MoodType, string>;
        moreOptions: string;
        muteAudio: string;
        muted: string;
        muteVideo: string;
        outputMuted: string;
        unmuteAudio: string;
        unmuteVideo: string;
    }
    Index

    Properties

    cameraOff: string

    Tooltip text when participant's camera is off

    engagementLabel: string

    Label template for engagement tooltip (use {value} placeholder for percentage)

    exitFullscreen: string

    Tooltip text for exit fullscreen button

    fillVideo: string

    Tooltip text for fill video button

    fitVideo: string

    Tooltip text for fit video button

    fullscreen: string

    Tooltip text for fullscreen button

    handRaised: string

    Tooltip text when participant has hand raised

    moodLabels: Record<MoodType, string>

    Labels for each mood type displayed in the mood indicator

    moreOptions: string

    Tooltip text for the overflow control-menu button rendered when controlsLayout === 'menu'. Same string is used as the aria-label for screen readers.

    muteAudio: string

    Menu label to mute the participant's audio (when showMuteAudio is on)

    muted: string

    Tooltip text when participant's audio is muted

    muteVideo: string

    Menu label to mute the participant's video (when showMuteVideo is on)

    outputMuted: string

    Tooltip text when participant's output (speaker) is muted by room owner

    unmuteAudio: string

    Menu label to unmute the participant's audio (when showMuteAudio is on)

    unmuteVideo: string

    Menu label to unmute the participant's video (when showMuteVideo is on)