supported languages
Language Resource see all language resource.
https://zoom.github.io/sample-app-web/global.html#languages
Please note that the user cannot disable the multi-Lang feature.
Once the Javascript resource file is loaded the user can set the language for the web client using the methods below.
loading with specific language
Set a Supported Language when Joining a Meeting:
//Add the language code to the internationalization.reload method
ZoomMtg.i18n.load("jp-JP");
ZoomMtg.i18n.reload("jp-JP");
change language when in meeting
Change the Language of the Web Client when a User Joins:
//Add the language code to the internationalization.reload method.
ZoomMtg.i18n.load("jp-JP");
//Add the language code to the ZoomMtg.reRender method.
ZoomMtg.reRender({lang: "jp-JP"});
Note Please note that you have to be in a meeting in order to rerender.
Add your own custom language key
Use Key-value Data to Load Custom Customer Language:
var langArray = ['de-DE', 'es-ES', 'en-US', 'fr-FR', 'jp-JP', 'pt-PT','ru-RU', 'zh-CN', 'zh-TW', 'ko-KO', 'it-IT', 'vi-VN', 'myCustomLanguageCode'];
ZoomMtg.i18n.load('user lang json url', "myLangauge");
ZoomMtg.i18n.reload("myLangauge");