• Loads translations. See for abbreviation descriptions: https://developers.zoom.us/docs/meeting-sdk/web/client-view/multi-language/ 'de-DE', 'es-ES', 'en-US', 'fr-FR', 'jp-JP', 'pt-PT', 'ru-RU', 'zh-CN', 'zh-TW', 'ko-KO', 'vi-VN', 'it-IT', 'id-ID', 'nl-NL', 'sv-SE' Be sure to call it before calling init.

    Parameters

    • lang: "de-DE" | "es-ES" | "en-US" | "fr-FR" | "jp-JP" | "pt-PT" | "ru-RU" | "zh-CN" | "zh-TW" | "ko-KO" | "vi-VN" | "it-IT" | "id-ID" | "nl-NL" | "sv-SE"

    Returns Promise<any>

  • Loads translation URL. Use the URL provided by Zoom or your own resource object. For the Zoom-provided JSON language use this syntax: https://source.zoom.us/{VERSION_NUMBER}/lib/lang/{LANG_CODE}.json. For example, to use the English resource from Zoom for v2.7.0 of the SDK, use: https://source.zoom.us/2.7.0/lib/lang/en-US.json Or create your own JSON resource object. Be sure to call it before calling init.

    Parameters

    • url: string | object

      JSON Language resource URL or resource object

    • lang: string

      Your assigned language name for the resource.

    Returns Promise<any>