How to change Electron Mac SDK language

I tried set “langid” when init zoomsdk,it’s work in Electron windows SDK

but not for Electron Mac SDK

We didn’t have the js wrapper that set the language id for mac sdk, which you called is only available for windows.

If you want implement this feature, you can write the js wrapper by yourself, the objective-c api for this feature is available.

You need call ‘- (NSArray*)getLanguageArray;’ first, then set the language you want to set from the language array, the api to set language is ‘- (ZoomSDKError)setPreferLanguage:(NSString *)preferLanguage’

thanks for reply , I will try

Marking as solved.

-Tommy