Hi,
I am using Genesys widget chat version 2 for our chat deployment. I want to change the language of the chat while initiating and I am using the below code. I am changing the lang parameter's value to "vietnam" and i18n's value to the language file that i have created (https://5d99-115-111-182-147.ngrok.io/widgets-vi.i18n.json). But somehow this is not working and chat widget is getting initiated in English language by default
<script src="https://apps.mypurecloud.ie/widgets/9.0/cxbus.min.js" onload="javascript:CXBus.configure({debug:false,pluginsPath:'https://apps.mypurecloud.ie/widgets/9.0/plugins/'}); CXBus.loadPlugin('widgets-core');"></script>
<script>
window._genesys = {
widgets: {
main: {
timeFormat: 24,
theme: 'dark',
lang: "vi",
**i18n: "https://5d99-115-111-182-147.ngrok.io/widgets-vi.i18n.json"**
},
"webchat": {
"transport": {
"type": "purecloud-v2-sockets",
"dataURL": "https://api.mypurecloud.ie",
"deploymentKey": "xxxxxx",
"orgGuid": "xxxxxx",
"interactionData": {
"routing": {
"targetType": "QUEUE",
"targetAddress": "NameOf the queue"
}
}
},
"userData": {
"addressStreet": "",
"addressCity": "",
"addressPostalCode": "",
"addressState": "",
"phoneNumber": "",
"customField1Label": "",
"customField1": "",
"customField2Label": "",
"customField2": "",
"customField3Label": "",
"customField3": ""
}
}
}
};
function getAdvancedConfig() {
return {
"form": {
"autoSubmit": false,
"firstname": "test",
"lastname": "",
"email": "",
"subject": ""
},
"formJSON": {
"wrapper": "<table></table>",
"inputs": [
{
"id": "cx_webchat_form_firstname",
"name": "firstname",
"maxlength": "100",
"label": "First Name"
},
{
"id": "cx_webchat_form_lastname",
"name": "lastname",
"maxlength": "100",
"placeholder": "Required",
"label": "Last Name"
},
{
"id": "cx_webchat_form_email",
"name": "email",
"maxlength": "100",
"placeholder": "Optional",
"label": "Email"
},
{
"id": "cx_webchat_form_subject",
"name": "subject",
"maxlength": "100",
"placeholder": "Optional",
"label": "Subject"
},
{
"id":"cx_webchat_form_enquirytype",
"name":"language",
"type":"select",
"label":"Language",
"options":[
{
"text":"English",
"value":"en",
"selected":true
},
{
"text":"Cantonese (Chinese Traditional)",
"value":"zh-TW"
},
{
"text":"Chinese Simplified",
"value":"zh-CN"
},
{
"text":"Japanese",
"value":"ja"
},
{
"text":"French",
"value":"fr"
}
]
}
]
}
};
}
const customPlugin = CXBus.registerPlugin('Custom');
</script>
<button type="button" id="chat-button" onclick="customPlugin.command('WebChat.open', getAdvancedConfig());">Start Chat</button>