Click or drag to resize

LocalizedStringIdentifier Enumeration

Export service localized string identifiers. In the exported HTML file, there are certain strings that can be localized, depending on the language set in the App. Application can use ExportService.SetLocalizedStrings() to pass the localized strings to Client SDK. The Client SDK uses the strings corresponding to the identifiers in the exported HTML.

Namespace:  Avaya.ClientServices
Assembly:  AvayaClientServices (in AvayaClientServices.dll) Version: 550.0.60.0
Syntax
C#
public enum LocalizedStringIdentifier
Members
  Member nameValueDescription
IdJoinedConversation0 Id representing a string for participant joined the messaging conversation. e.g., "{0} joined conversation on {1}" Client SDK replaces {0} with the participant's name who joined the conversation and {1} with time stamp when participant joined the conversation.
IdLeftConversation1 Id representing a string for participant left the messaging conversation. e.g., "{0} left conversation on {1}", Client SDK replaces {0} with the participant's name who left the conversation and {1} with time stamp when participant left the conversation.
IdRemovedFromConversation2 Id representing a string for participant removed from the messaging conversation. e.g., "{0} has been removed from the conversation by {1} on {2}" Client SDK replaces {0} with the removed participant's name, {1} with the participant's name who removed the other participant and {2} with time stamp when participant is removed from the conversation.
IdSubjectChanged3 Id representing a string for subject changed of the messaging conversation. e.g., "set the subject to:"
IdAttachmentDownloaded4 Id representing a string for attachment downloaded. e.g., "Attachment:"
IdAttachementFailed5 Id representing a string for attachment download failed. e.g., "Failed to download attachment:"
IdConversationHeaderTitle6 Id representing a conversation title string in the header section. e.g., "Avaya Workplace Conversation Transcript"
IdConferenceHeaderTitle7 Id representing a conference title string in the header section. e.g., "Avaya Workplace Conference Public Chat Transcript"
IdHeaderConversation8 Id representing a string for conversation label in the header section. e.g., "Conversation:"
IdHeaderConference9 Id representing a string for conference label in the header section. e.g., "Meeting:"
eHeaderParticipants10 Id representing a string for participants label in the header section. e.g., "Participants ({0}): {1}" Client SDK replaces {0} with number of participants and {1} with the list of participants.
eHeaderExportedAt11 Id representing a string for exported at label in the header section. e.g., "Exported at {0}" Client SDK replaces {0} with time stamp when export operation is completed.
eHeaderExportedBy12 Id representing a string for exported by label in the header section. e.g., "Exported by {0}" Client SDK replaces {0} with the participant's name who started the export operation.
eAttachmentFolder13 Id representing a string for attachments folder name to download attachments. e.g., "attachments"
See Also