Customizable text labels for the ChatPanel component.
All text displayed in the ChatPanel can be customized through this interface. This enables full internationalization (i18n) support.
import { defaultChatPanelLabels } from '@hiyve/react-collaboration';// Spanish labelsconst spanishLabels: Partial<ChatPanelLabels> = { title: 'Chat', placeholder: 'Escribe un mensaje...', emptyState: 'No hay mensajes aún', unknownSender: 'Desconocido',};<ChatPanel labels={spanishLabels} /> Copy
import { defaultChatPanelLabels } from '@hiyve/react-collaboration';// Spanish labelsconst spanishLabels: Partial<ChatPanelLabels> = { title: 'Chat', placeholder: 'Escribe un mensaje...', emptyState: 'No hay mensajes aún', unknownSender: 'Desconocido',};<ChatPanel labels={spanishLabels} />
Message shown when there are no messages
Placeholder text for the message input field
Header title for the chat panel
Fallback name when sender name is not available
Customizable text labels for the ChatPanel component.
Remarks
All text displayed in the ChatPanel can be customized through this interface. This enables full internationalization (i18n) support.
Example