Start Websdk in french

Dear all,
i want to start/join a meeting in french,
but everytime, it starts in english, and only if i refresh the page, i can get the french.

can someone explain me where and what to put to get the connexion in another language ?

thanks & regards

Hey @VincentV,

Have you followed our Web SDK language guide?

Thanks,
Tommy

Yes, but it does not clearly explain where to put the lines
$.i18n.reload(“fr-FR”);
ZoomMtg.reRender({lang: “fr-FR”});

So I’m a bit confused.
I put them in the zoomMgt.join success function, but it does not work

Hey @VincentV,

Try this putting it at the top of your file like this:

import { ZoomMtg } from '@zoomus/websdk';

ZoomMtg.preLoadWasm();
ZoomMtg.prepareJssdk();

$.i18n.reload("fr-FR");

Thanks,
Tommy