export interface ILiveChatWidgetLocalizedTexts { PREVIOUS_MESSAGES_LOADING?: string; /** * Aria label announced by screen readers for the conversation history divider element. * e.g. "Conversation history divider" or localized equivalent. */ CONVERSATION_DIVIDER_ARIA_LABEL?: string; MIDDLEWARE_BANNER_FILE_NULL_ERROR?: string; MIDDLEWARE_BANNER_FILE_SIZE_WITHOUT_EXTENSION_ERROR?: string; MIDDLEWARE_BANNER_FILE_SIZE_EXTENSION_ERROR?: string; MIDDLEWARE_BANNER_FILE_WITHOUT_EXTENSION?: string; MIDDLEWARE_BANNER_FILE_EXTENSION_ERROR?: string; MIDDLEWARE_BANNER_FILE_SIZE_ERROR?: string; MIDDLEWARE_BANNER_FILE_IS_EMPTY_ERROR?: string; MIDDLEWARE_BANNER_ERROR_MESSAGE?: string; MIDDLEWARE_BANNER_INTERNET_BACK_ONLINE?: string; MIDDLEWARE_BANNER_NO_INTERNET_CONNECTION?: string; MIDDLEWARE_MAX_CHARACTER_COUNT_EXCEEDED?: string; MIDDLEWARE_TYPING_INDICATOR_ONE?: string; MIDDLEWARE_TYPING_INDICATOR_TWO?: string; MIDDLEWARE_TYPING_INDICATOR_MULTIPLE?: string; MIDDLEWARE_MESSAGE_SENDING?: string; MIDDLEWARE_MESSAGE_DELIVERED?: string; MIDDLEWARE_MESSAGE_NOT_DELIVERED?: string; MIDDLEWARE_MESSAGE_RETRY?: string; PRECHAT_REQUIRED_FIELD_MISSING_MESSAGE?: string; MARKDOWN_EXTERNAL_LINK_ALT?: string; MIDDLEWARE_BANNER_CHAT_DISCONNECT?: string; THIRD_PARTY_COOKIES_BLOCKED_ALERT_MESSAGE?: string; /** * Error message shown when the file is malicious * Variable replacement: * {0} - File name * e.g. "{0} has been blocked because the file may contain a malware." */ MIDDLEWARE_BANNER_FILE_IS_MALICIOUS?: string; /** * Success message announced by screen readers when a file is successfully sent. * e.g. "File sent successfully." */ MIDDLEWARE_BANNER_FILE_SENT?: string; /** * Success message, indicating the email address introduced has been registered to receive the transcript. */ MIDDLEWARE_BANNER_FILE_EMAIL_ADDRESS_RECORDED_SUCCESS?: string; /** * Error message, indicating the email address introduced couldnt be registered. * {0} - e-mail address introduced */ MIDDLEWARE_BANNER_FILE_EMAIL_ADDRESS_RECORDED_ERROR?: string; /** * Screen-reader prefix spoken before a success banner message, so SR users hear * the explicit state word (e.g. "Success. Email will be sent after chat ends!"). * Include trailing spacing/punctuation as needed for the target locale. */ MIDDLEWARE_SR_PREFIX_SUCCESS?: string; /** * Screen-reader prefix spoken before an error banner message, so SR users hear * the explicit state word (e.g. "Error. Email foo@bar.com could not be saved..."). * Include trailing spacing/punctuation as needed for the target locale. */ MIDDLEWARE_SR_PREFIX_ERROR?: string; }