BlueJeans is being sunset. Please refer to more details

Localization


Web Embed SDK provides the value of locale to change the language of the text in the meeting. You can use five types of languages in the meeting experience. The list of supported language that you can choose in your embed experience are as follows:

  • DE: German
  • EN: English
  • ES: Spanish
  • FR: French
  • JA: Japanese

To set localization, you need to specify the locale while joining a meeting. A sample code snippet is given below.

BJNEmbedSDK.joinMeeting({
    "meetingInfo": {
           "meetingId": "Meeting ID",    
           "name": "Your Name",
           "passcode": "Passcode",         
    },
    "iFrameProps" : {
            "width" : Any value, or can be left empty,
            "height" : Any value, or can be left empty,
            "selectorId" : ID of place where it should be loaded
    },
        "uiProps" : {
           "locale" : "en",
    }
})