Localization
As an integrator you have the ability to localize the EngagementSDK chat and widget experience. Multiple languages can be used, and they can be changed on the fly.
These localizations are stored in the localizedStrings
object, which has ISO 639-1 Language Codes as keys, and a value of an object of translations.
Default Localization
The SDK comes with an English localisation by default. The default localizedStrings
object is shown below.
"en": {
"chat.inputPlaceholder": "Say something...",
"chat.messageMenu.blockUser": "Block this user",
"chat.messageMenu.reportMessage": "Report message",
"chat.messageMenu.cancel": "Cancel",
"chat.messageMenu.ariaLabel": "Message options",
"chat.blockConfirmation.message": "You will no longer see messages from this user.",
"chat.reportConfirmation.message": "The message has been reported to the moderators. Thank you.",
"chat.mutedMessage": "Unable to send message.",
"chat.errorMessage": "There was an error. Please try again.",
"chat.messageDeleted": "This message has been removed.",
"chat.sendButton.ariaLabel": "Send Message",
"chat.scrollDownButton.ariaLabel": "Scroll Down",
"chat.stickerPicker.title": "STICKERS",
"chat.stickerPicker.openButton.ariaLabel": "Open Stickers",
"chat.stickerPicker.closeButton.ariaLabel": "Close Stickers",
"chat.stickerPicker.stickerPackTab.ariaLabel": "Sticker pack <packName>",
"chat.stickerPicker.stickerSelectionButton.ariaLabel": "<stickerName> Sticker",
"chat.giphyPicker.title": "GIPHY",
"chat.giphyPicker.placeholder": "Search GIFs via GIPHY",
"chat.giphyPicker.openButton.ariaLabel": "Open GIPHY",
"chat.giphyPicker.closeButton.ariaLabel": "Close GIPHY",
"chat.giphyPicker.stickerSelectionButton.ariaLabel": "<stickerName> GIF",
"chat.reactions.openButton.ariaLabel": "Message reactions",
"chat.reactions.reactionSelectionButton.ariaLabel": "Reaction <reactionName>",
"widget.quiz.voteButton.label": "Vote",
"widget.quiz.votedText": "Voted!",
"widget.slider.voteButton.label": "Vote",
"widget.slider.votedText": "Voted!",
"widget.textAsk.placeholder": "Type something...",
"widget.textAsk.sendButton.label": "SEND",
"widget.video.playbackError": "Can’t play this video",
"widget.sponsors.label": "Sponsored by",
"widget.quiz.tag": "",
"widget.poll.tag": "",
"widget.prediction.tag": "",
"widget.followup.tag": "",
}
Setting Custom Localizations
The localizedStrings
object can be set by passing custom localizations to either the LiveLike.init
method's localizedStrings
argument, or the LiveLike.applyLocalization
method.
LiveLike.applyLocalization
LiveLike.applyLocalization({
hi: {
"chat.inputPlaceholder": "कुछ बोलो...",
"chat.messageMenu.blockUser": "इस उपयोगकर्ता को ब्लॉक करें",
"chat.messageMenu.reportMessage": "रिपोर्ट संदेश",
"chat.messageMenu.cancel": "रद्द करें",
"chat.blockConfirmation.message": "अब आप <username> के संदेश नहीं देखेंगे",
"chat.reportConfirmation.message": "यह संदेश मध्यस्थों को सूचित किया गया है। धन्यवाद।",
"chat.errorMessage": "एक त्रुटि हुई। कृपया पुन: प्रयास करें।",
"chat.messageDeleted": "यह संदेश हटा दिया गया है।",
"chat.stickerPicker.title": "STICKERS",
"chat.giphyPicker.title": "GIPHY",
"chat.giphyPicker.placeholder": "GIPHY के माध्यम से GIF खोजें",
"chat.sendButton.ariaLabel": "संदेश भेजें",
"chat.scrollDownButton.ariaLabel": "नीचे स्क्रॉल करें",
"chat.stickerPicker.openButton.ariaLabel": "स्टिकर खोलो",
"chat.giphyPicker.openButton.ariaLabel": "GIPHY खोलो",
"chat.stickerPicker.closeButton.ariaLabel": "स्टिकर बंद करो",
"chat.giphyPicker.closeButton.ariaLabel": "GIPHY बंद करो",
"chat.stickerPicker.stickerPackTab.ariaLabel": "स्टिकर का पुलिंदा <packName>",
"chat.stickerPicker.stickerSelectionButton.ariaLabel": "<stickerName> स्टिकर",
"chat.giphyPicker.stickerSelectionButton.ariaLabel": "<stickerName> GIF",
"chat.messageMenu.ariaLabel": "संदेश विकल्प",
"chat.reactions.openButton.ariaLabel": "संदेश प्रतिक्रियाए",
"chat.reactions.reactionSelectionButton.ariaLabel": "प्रतिक्रिया <reactionName>"
}
})
LiveLike.init argument
Usage
The keys of localizedStrings
are valid language codes, and they will match the lang
attribute used in HTML tags.
Single language
For example, if a Spanish localization is used, the language code is es
. The es
language code will be used as both the localizedStrings
key, and the lang
attribute.
<livelike-chat lang="es" roomid=""></livelike-chat>
<script>
LiveLike.init({
clientId: '',
localizedStrings: {
es: {
"chat.inputPlaceholder": "Dices Algo",
"chat.messageMenu.blockUser": "Bloquea a esta persona",
"chat.messageMenu.reportMessage": "Reporte este mensaje",
"chat.messageMenu.cancel": "Cancelar",
"chat.messageMenu.ariaLabel": "Opciones de mensaje",
"chat.blockConfirmation.message": "Ya no recibirás mensajes de <username>.",
"chat.reportConfirmation.message": "El mensaje ha sido informado a los moderadores. Gracias.",
"chat.errorMessage": "Hubo un error. Inténtalo de nuevo.",
"chat.messageDeleted": "Este mensaje ha sido eliminado.",
"chat.sendButton.ariaLabel": "Enviar mensaje",
"chat.scrollDownButton.ariaLabel": "Desplazarse hacia abajo",
"chat.stickerPicker.title": "Pegatinas",
"chat.stickerPicker.openButton.ariaLabel": "Abrir pegatinas",
"chat.stickerPicker.closeButton.ariaLabel": "Cerrar pegatinas",
"chat.stickerPicker.stickerPackTab.ariaLabel": "Paquete de pegatinas <packName>",
"chat.stickerPicker.stickerSelectionButton.ariaLabel": "<stickerName> pegatina",
"chat.giphyPicker.title": "GIPHY",
"chat.giphyPicker.placeholder": "Buscar GIF a través de GIPHY",
"chat.giphyPicker.openButton.ariaLabel": "Abrir GIPHY",
"chat.giphyPicker.closeButton.ariaLabel": "Cerrar GIPHY",
"chat.giphyPicker.stickerSelectionButton.ariaLabel": "<stickerName> GIF",
"chat.reactions.openButton.ariaLabel": "Reacciones de mensajes",
"chat.reactions.reactionSelectionButton.ariaLabel": "Reacción <reactionName>"
}
}
})
</script>
Multiple Languages
Multiple language keys can be added to the localizedStrings
object. These languages can then be dynamically changed in your application.
Limited Keys
Integrators can override default values by setting the keys they want to change.
LiveLike.applyLocalization({
en: {
"widget.quiz.voteButton.label": "Submit",
"widget.quiz.votedText": "Submitted!"
}
})
Updated 12 months ago