/** * String map to define localizable language strings * @interface Strings * @category Templates */ export interface Strings { /** Text shown in the edit box when no content has been entered. */ InputPlaceHolder: T; /** Text used for typing indicator. For example "Bob is typing" */ TypingIndicator: T; /** Text used for typing indicator, when more than 1 person is typing. For example "3 people are typing" */ TypingIndicatorMultiple: T; /** Text shown on banner when Programmable Chat is connecting */ Connecting: T; /** Text shown on banner when Programmable Chat is disconnected */ Disconnected: T; /** Text below last message that has been read by other party */ Read: T; /** Text shown if sending messages has been disabled */ MessageSendingDisabled: T; /** Text shown in message list to group messages from today's date */ Today: T; /** Text shown in message list to group messages from yesterday's date */ Yesterday: T; /** Text shown in (MessageCanvasTray)[MessageCanvasTray] */ MessageCanvasTrayContent: T; /** Text shown on the button in (MessageCanvasTray)[MessageCanvasTray] */ MessageCanvasTrayButton: T; /** Error shown when media message is received in chat */ MediaMessageError: T; /** Text shown at start of a chat */ WelcomeMessage: T; /** Text shown when chat is closed */ ChatClosedMessage: T; /** Text shown in notification message. Custom error message denoted by {{message}} */ NotificationMessage: T; /** Text shown on save button */ Save: T; /** Text shown on reset button */ Reset: T; /** Text showing current and maximum character count */ MessageCharacterCountStatus: T; /** Text shown when maximum character count is reached */ MessageCharacterCountReached: T; /** Text showing current and maximum character count */ EmailContentSizeStatus: T; /** Text shown when maximum character count is reached */ EmailContentSizeReached: T; /** Tooltip used on send message icon button */ SendMessageTooltip: T; /** Text displayed when a required field is not filled */ FieldValidationRequiredField: T; /** Text displayed when an "email" field doesn't receive a valid email */ FieldValidationInvalidEmail: T; /** Text displayed when when user is not a member of the chat */ ChatInputUserNotMemberDisabledText: T; /** Text to indicate no item is selected in filterItem (any) */ FilterItemAny: T; /** Text to indicate a number of items is selected in filterItem (# selected) */ FilterItemAmountSelected: T; /** Text to indicate no item is selected in filterItem (# only) */ FilterItemOnly: T; /** Title of the section in the Teams View filter panel that displays the legacy filter dropdown */ LegacyFiltersTitle: T; /** Legacy filter selection dropdown option in Teams View filter panel indicating empty selection */ LegacyFiltersEmptySelectLabel: T; /** Text shown instead of caption for number 0 in Dialpad component */ DialpadNum0Caption: T; /** Text shown instead of description for number 0 in Dialpad component */ DialpadNum0Description: T; /** Text shown instead of caption for number 1 in Dialpad component */ DialpadNum1Caption: T; /** Text shown instead of description for number 1 in Dialpad component */ DialpadNum1Description: T; /** Text shown instead of caption for number 2 in Dialpad component */ DialpadNum2Caption: T; /** Text shown instead of description for number 2 in Dialpad component */ DialpadNum2Description: T; /** Text shown instead of caption for number 3 in Dialpad component */ DialpadNum3Caption: T; /** Text shown instead of description for number 3 in Dialpad component */ DialpadNum3Description: T; /** Text shown instead of caption for number 4 in Dialpad component */ DialpadNum4Caption: T; /** Text shown instead of description for number 4 in Dialpad component */ DialpadNum4Description: T; /** Text shown instead of caption for number 5 in Dialpad component */ DialpadNum5Caption: T; /** Text shown instead of description for number 5 in Dialpad component */ DialpadNum5Description: T; /** Text shown instead of caption for number 6 in Dialpad component */ DialpadNum6Caption: T; /** Text shown instead of description for number 6 in Dialpad component */ DialpadNum6Description: T; /** Text shown instead of caption for number 7 in Dialpad component */ DialpadNum7Caption: T; /** Text shown instead of description for number 7 in Dialpad component */ DialpadNum7Description: T; /** Text shown instead of caption for number 8 in Dialpad component */ DialpadNum8Caption: T; /** Text shown instead of description for number 8 in Dialpad component */ DialpadNum8Description: T; /** Text shown instead of caption for number 9 in Dialpad component */ DialpadNum9Caption: T; /** Text shown instead of description for number 9 in Dialpad component */ DialpadNum9Description: T; /** Text shown instead of caption for hash in Dialpad component */ DialpadHashCaption: T; /** Text shown instead of description for hash in Dialpad component */ DialpadHashDescription: T; /** Text shown instead of caption for asterisk in Dialpad component */ DialpadAsteriskCaption: T; /** Text shown instead of description for asterisk in Dialpad component */ DialpadAsteriskDescription: T; /** Text shown in the browser notification title for a new chat message */ NewChatMessageNotificationTitle: T; /** Text shown in the browser notification body for a new chat message */ NewChatMessageNotificationBody: T; /** Text shown in media message bubble when it's hovered */ MediaMessageClickToOpen: T; /** Text shown in notification when message with invalid file type is sent */ SendMediaMessageInvalidType: T; /** Text shown in notification when message with invalid size is sent */ SendMediaMessageInvalidSize: T; /** Text shown in notification when multiple files fail to attach */ AttachFileMultipleFailure: T; /** Link text shown in notification when multiple files fail to attach */ AttachFileMultipleFailureExpandLink: T; /** Text shown in notification when duplicate file is attached */ AttachFileDuplicate: T; /** Text shown in notification when invalid file type is attached */ AttachFileInvalidType: T; /** Text shown in notification when invalid file size is attached */ AttachFileInvalidSize: T; /** Text shown in notification when the overall size of the attachments would go above the limit */ AttachFileInvalidOverallSize: T; /** Text shown in notification when maximum amount of attachment has been reached */ AttachFileInvalidMaxAmount: T; /** Text shown in notification when multiple attachments are attempted but not supported */ AttachFileMultipleNotSupported: T; /** Text shown in notification when attachments have been disabled via service config */ AttachFileDisabled: T; /** Text shown in notification when invalid file type is downloaded */ DownloadFileInvalidType: T; /** Text shown in notification when invalid file size is downloaded */ DownloadFileInvalidSize: T; /** Text shown in media message when the file fails to be sent */ MediaMessageTransferFailed: T; /** Text shown in message bubble when the message is failed */ MessageDeliveryFailed: T; /** Text shown in message bubble when the message is undelivered */ MessageDeliveryUnDelivered: T; /** Text shown in message bubble when the message is unsupported or empty */ MessageTypeUnsupportedOrEmpty: T; /** Tooltip used on send media message icon button */ AttachFileImageTooltip: T; /** Assign Agents Breadcrumb in the queue management view */ ManageAgentsToQueueBreadCrumb: T; /** Root breadcrumb of the queue management view */ QueueStatsBreadCrumb: T; /** Main line of text of FileAttachment drop area */ FileAttachmentDropAreaTitle: T; /** Main line of text of FileAttachment drop area when disabled */ FileAttachmentDropAreaTitleDisabled: T; /** Main line of text of FileAttachment drop area when file count limit reached */ FileAttachmentDropAreaTitleFileLimitReached: T; /** Secondary line of text of FileAttachment drop area */ FileAttachmentDropAreaSubtitle: T; /** Secondary line of text of FileAttachment drop area when disabled */ FileAttachmentDropAreaSubtitleDisabled: T; /** Secondary line of text of FileAttachment drop area when file count limit reached */ FileAttachmentDropAreaSubtitleFileLimitReached: T; /** Email subject input field * @private */ EmailSubject: T; /** Email "from" label indicating the author of a message * @private */ EmailFrom: T; /** Email "to" input field * @private */ EmailTo: T; /** Email "cc" input field * @private */ EmailCc: T; /** Placeholder for the recipients input field * @private */ EmailRecipientInputPlaceholder: T; /** Email editor title * @private */ EmailEditorTitle: T; /** Email editor submit button caption * @private */ EmailEditorSubmit: T; /** Tooltip for when email editor submit button is disable because there are no participants * @private */ EmailEditorNoParticipantButtonTooltip: T; /** Content for EmailSent notification * @private */ EmailSentNotification: T; /** Content for EmailAddParticipantFailed notification * @private */ EmailAddParticipantFailedNotification: T; /** Content for EmailRemoveParticipantFailed notification * @private */ EmailRemoveParticipantFailedNotification: T; /** Email editor reply button caption * @private */ EmailEditorReply: T; /** Email editor remove email address button aria label * @private */ EmailEditorRemoveEmailAddressButtonAriaLabel: T; /** Email message recipient list prefix * @private */ EmailMessageRecipientListPrefix: T; /** Email message recipient list Cc prefix * @private */ EmailMessageRecipientListCcPrefix: T; /** Email message recipient list more * @private */ EmailMessageRecipientListMore: T; /** Aria label for email message toggle actions button * @private */ EmailMessageActionsButtonAriaLabel: T; /** Aria label for email message actions navigation * @private */ EmailMessageActionsNavAriaLabel: T; /** Email view full thread button label * @private */ EmailViewThread: T; /** Email label for disabled thread button * @private */ EmailThreadNotAvailable: T; /** Email loading thread placeholder html * @private */ EmailLoadingThreadPlaceholder: T; /** Email loading thread error html * @private */ EmailLoadingThreadError: T; /** Email title of the view thread window * @private */ EmailThreadWindowTitle: T; /** Email thread window details * @private */ EmailThreadDetails: T; /** HTML Editor Link panel title * @private */ LinkPanelTitle: T; /** HTML Editor Link panel 'text' field label * @private */ LinkPanelTextLabel: T; /** HTML Editor Link panel 'text' field placeholder * @private */ LinkPanelTextPlaceholder: T; /** HTML Editor Link panel 'link' field label * @private */ LinkPanelLinkLabel: T; /** HTML Editor Link panel 'link' field placeholder * @private */ LinkPanelLinkPlaceholder: T; /** HTML Editor Link panel 'apply' button label * @private */ LinkPanelApplyButtonLabel: T; /** HTML Editor Link panel 'remove' button label * @private */ LinkPanelRemoveButtonLabel: T; /** User Image aria label */ UserImageAriaLabel: T; /** Default User Image aria label */ DefaultUserImageAriaLabel: T; /** Close Icon aria label */ CloseIconAriaLabel: T; /** Close Outbound Dialer Pad aria label */ CloseOutboundDialerPadAriaLabel: T; /** User Card aria label */ UserCardAriaLabel: T; /** Notification Action Item aria label */ NotificationActionItemAriaLabel: T; /** Close Icon Notification aria label */ CloseIconNotificationAriaLabel: T; /** Send Button message 'Not Connected' aria label */ NotConnectedSendMessageAriaLabel: T; /** Send Button message 'No Input' aria label */ NoInputSendMessageAriaLabel: T; /** Send Button message. 'Character count reached' aria label */ CharLimitReachedSendMessageAriaLabel: T; /** Remove Attached File aria label */ RemoveAttachedFileAriaLabel: T; /** Disabled Remove Attached File aria label */ DisabledRemoveAttachedFileAriaLabel: T; /** Clear Button aria label */ ClearButtonAriaLabel: T; /** Attach File Button 'Cannot Attach File due to maximum number of file attachments has been reached' aria label */ AttachedFileLimitAriaLabel: T; /** Attach File Button 'Cannot attach file Conversation is empty' aria label */ NoMessagesConversationAriaLabel: T; /** Attach File Button 'Cannot attach file as disabled' aria label */ DisabledAttachFileButtonAriaLabel: T; /** Send Button 'Cannot send message as disabled' aria label */ DisabledSendButtonAriaLabel: T; /** Expand Button Filter aria label */ ExpandFilterButtonAriaLabel: T; /** Hide Button Filter aria label */ HideFilterButtonAriaLabel: T; /** Message Input 'Cannot enter input as disabled' aria label */ MessageInputDisabledAriaLabel: T; /** Country Selector label */ CountrySelectorLabel: T; /** Send Button Text */ MessageInputSendButtonText: T; /** New Button Text */ NewMessageSeparatorText: T; /** Text for file preview subtitle while sending * @private */ FileSendingText: T; /** New message text shown in the scroll to buttom button when only 1 new message is there * @private */ SingleNewMessageScrollButtonText: T; /** Message text shown in the scroll to buttom button when only 2 to 5 new message is there * @private */ FewNewMessagesScrollButtonText: T; /** New message text shown in the scroll to buttom button when more than 5 new message is there * @private */ ManyNewMessagesScrollButtonText: T; /** Hidden Headers For Accessibility */ HiddenQualityManagementQuestionsSideNavHeader: T; /** Popover menu button aria label in Quality Management views */ QualityManagementPopoverMenuButtonAriaLabel: T; /** Error message text for chat message sending failures */ SendMessageFailed: T; /** Error message text for email sending failures */ SendEmailFailed: T; /** Customer label */ CCAICustomerLabel: T; /** Virtual Agent label */ CCAIVirtualAgent: T; /** Task wrapup tab label */ TaskTabWrapupLabel: T; /** Label text for no content body */ NoContent: T; /** Virtual Agent Handoff label */ CCAIVirtualAgentHandoff: T; /** Live agent connected */ LiveAgentConnected: T; /** Transfer item agents notes label */ TransferItemAgentNotesLabel: T; /** Transfer item receiving header */ TransferItemHeaderFull: T; /** Channel Type header in transfer */ /** Transfer item receiving minimal header */ TransferItemHeaderMinimal: T; /** Channel Type header in transfer * @deprecated * @since 2.8.0 * @deprecatedSince 2.12.0 * @altRecommendation use TransferItemHeaderMinimal instead * @altRecommendationExample flex.Manager.getInstance().strings.TransferItemHeaderMinimal */ TransferItemHeaderChannelTypeOnly: T; /** Transfer item receiving header * @deprecated * @since 2.8.0 * @deprecatedSince 2.12.0 * @altRecommendation use TransferItemHeaderFull instead * @altRecommendationExample flex.Manager.getInstance().strings.TransferItemHeaderFull */ TransferItemHeaderReceivingAgentOnly: T; /** Missing Flag Label */ MissingFlagLabel: T; /** Text for when Unloading Iframe */ IframeUnloadingMessage: T; /** Text for Reload Iframe Button */ IframeReloadButtonLabel: T; /** Text for Label Remove Filters on Teams view Filter panel */ TeamsViewFilterRemoveFilters: T; /** Default name for the customer in the chat canvas */ ChatCustomerNameDefault: T; /** Email participant change confirm dialog header * @private * @since 2.10.0 * */ EmailParticipantChangeConfirmDialogHeader: T; /** Email participant change confirm dialog body header * @private * @since 2.10.0 * */ EmailParticipantChangeConfirmDialogBodyHeader: T; /** Email participant change confirm dialog body email list * @private * @since 2.10.0 * */ EmailParticipantChangeConfirmDialogBodyEmailList: T; /** Email participant change confirm dialog body footer * @private * @since 2.10.0 * */ EmailParticipantChangeConfirmDialogBodyFooter: T; /** Email participant change confirm dialog submit button caption * @private * @since 2.10.0 */ EmailParticipantChangeConfirmDialogSubmit: T; /** Email participant change confirm dialog cancel button caption * @private * @since 2.10.0 */ EmailParticipantChangeConfirmDialogCancel: T; /** Help text for text and attachments must be sent in separate messages text * @since 2.12.0 * @private */ ChatHelpTextTitle: T; /** Text for learn more text * @since 2.12.0 * @private */ LearnMore: T; /** Text for send attachement separately text * @since 2.12.0 * @private */ SendAttachmentSeparately: T; /** Text for send text separately text * @since 2.12.0 * @private */ SendTextSeparately: T; /** Text for reached maximum number of attachements allowed text * @since 2.12.0 * @private */ ReachedMaximumNumberOfAttachements: T; /** Text for when the content templates browser modal header * @private * @since 2.11.0 */ ContentTemplatesBrowserModalHeader: T; /** Text for when the selected content template has variables available * @private * @since 2.11.0 */ ContentTemplatesBrowserModalVariablesAvailable: T; /** Text for the content template modal back button * @private * @since 2.11.0 */ ContentTemplatesBrowserModalBackButton: T; /** Text for the content template modal next button * @private * @since 2.11.0 */ ContentTemplatesBrowserModalNextButton: T; /** Text for the content template modal send button * @private * @since 2.11.0 */ ContentTemplatesBrowserModalSendButton: T; /** Text displayed when there are no content templates available * @private * @since 2.11.0 */ ContentTemplatesBrowserModalNoTemplates: T; /** Text displayed when loading content templates * @private * @since 2.11.0 */ ContentTemplatesBrowserModalLoadingTemplates: T; /** Text displayed when there is an error fetching content templates * @private * @since 2.11.0 */ ContentTemplatesBrowserModalErrorFetchingTemplates: T; /** Text displayed when there is an error sending a content template * @private * @since 2.11.0 */ ContentTemplatesBrowserModalErrorSendingTemplate: T; /** Content template type name for Text displayed in the content template browser modal * @private * @since 2.11.0 */ ContentTemplateTypeText: T; /** Content template type name for Media displayed in the content template browser modal * @private * @since 2.11.0 */ ContentTemplateTypeMedia: T; /** Content template type name for Location displayed in the content template browser modal * @private * @since 2.11.0 */ ContentTemplateTypeLocation: T; /** Content template type name for Quick Reply displayed in the content template browser modal * @private * @since 2.11.0 */ ContentTemplateTypeQuickReply: T; /** Content template type name for Call to Action displayed in the content template browser modal * @private * @since 2.11.0 */ ContentTemplateTypeCallToAction: T; /** Content template type name for List Picker displayed in the content template browser modal * @private * @since 2.11.0 */ ContentTemplateTypeListPicker: T; /** Content template type name for Card displayed in the content template browser modal * @private * @since 2.11.0 */ ContentTemplateTypeCard: T; /** Content template type WhatsApp Card for Catalog displayed in the content template browser modal * @private * @since 2.13.0 */ ContentTemplateTypeWhatsAppCard: T; /** Content template type name for WhatsApp Authentication displayed in the content template browser modal * @private * @since 2.13.0 */ ContentTemplateTypeWhatsAppAuthentication: T; /** Content template type name for Catalog displayed in the content template browser modal * @private * @since 2.11.0 */ ContentTemplateTypeCatalog: T; /** Content template type name for Payments displayed in the content template browser modal * @private * @since 2.11.0 */ ContentTemplateTypePayments: T; /** Content template type name for Authentication displayed in the content template browser modal * @private * @since 2.11.0 */ ContentTemplateTypeAuthentication: T; /** Content template type name for Schedule displayed in the content template browser modal * @private * @since 2.11.0 */ ContentTemplateTypeSchedule: T; /** Content template type name for an unknown type displayed in the content template browser modal * @private * @since 2.11.0 */ ContentTemplateTypeUnknown: T; /** Helptext for the multiselect combobox component * @private * @since 2.12.0 */ FilterHelpText: T; /** Text displayed when the filter search has no results * @private * @since 2.12.0 */ FiltersNoResultFound: T; /** Helper text displayed inside search box * @private * @since 2.14.0 */ SearchTemplateByName: T; }