Join Meeting Language

Description
How can I change language on the join meeting page? Using ZoomMtg.i18n I am able to change the language used during the meeting but not on the joining page. See attached screenshot. How can I change at least the “Join Meeting” header and the “Join” button text?

Which Web Meeting SDK version?
2.0.1

Screenshots

OK, I found the issue. It’s because the documentation is confusing. It suggests that the order of things is

ZoomMtg.i18n.load('lang');
ZoomMtg.i18n.reload('lang');
ZoomMtg.init()

where it’s not true because load is async function so we have to wait for it. The actual code should be:

ZoomMtg.i18n.load('lang').then(() => {
   ZoomMtg.i18n.reload('lang');
   ZoomMtg.init()
})
1 Like

@Dazik,

Welcome to the Developer Forum – we are thrilled to have you. Glad to hear you were able to change the language on the Join preview screen. Should you have any additional questions or comments, please let us know.

Best,
Donte

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.