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

    Interface LocalVideoTileLabels

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

    // French localization
    const frenchLabels: Partial<LocalVideoTileLabels> = {
    flipVideo: 'Retourner la vidéo',
    recording: 'ENR',
    streaming: 'DIRECT',
    localUserSuffix: '(Vous)'
    };

    <LocalVideoTile labels={frenchLabels} />
    interface LocalVideoTileLabels {
        cameraOff: string;
        engagementLabel: string;
        exitFullscreen: string;
        fillVideo: string;
        fitVideo: string;
        flipVideo: string;
        fullscreen: string;
        handRaised: string;
        localUserSuffix: string;
        microphoneMuted: string;
        moodLabels: Record<MoodType, string>;
        outputMuted: string;
        recording: string;
        streaming: string;
        unflipVideo: string;
    }
    Index

    Properties

    cameraOff: string

    Tooltip when camera is off

    engagementLabel: string

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

    exitFullscreen: string

    Tooltip for exit fullscreen button

    fillVideo: string

    Tooltip for fill video button

    fitVideo: string

    Tooltip for fit video button

    flipVideo: string

    Tooltip for flip/mirror button when video is not flipped

    fullscreen: string

    Tooltip for fullscreen button

    handRaised: string

    Tooltip when hand is raised

    localUserSuffix: string

    Suffix added after local user's name (e.g., "(You)")

    microphoneMuted: string

    Tooltip when microphone is muted

    moodLabels: Record<MoodType, string>

    Labels for each mood type displayed in the mood indicator

    outputMuted: string

    Tooltip when output (speaker) is muted by room owner

    recording: string

    Text displayed on recording indicator badge

    streaming: string

    Text displayed on streaming/live indicator badge

    unflipVideo: string

    Tooltip for flip/mirror button when video is flipped