how to change english to chinese for macOS

  I am a chinese macOS developer,my company developed  a APP using your SDK . When I entered the conference screen, the operations inside were in English.The development document did not tell me the solution  .can you give me some ideas . i am look forwards to your reply.

Hi,

in Our iOS SDK sample, you can select language, please take a look and let me know if you have any question.

Best

my question is bout macOS develop,not for iOS .in your macOS SDK sample, I didn’t find an interface to change language .Is it necessary for me to build a localization file and translate it myself?

Hi Qian,

we provide English strings in latest zoom release, you can add private localized file refer the key in the string, and change the translation to whatever you want.

      use this interface:  - (void)setCustomBundlePath:(NSString*)bundlePath fileName:(NSString*)fileName; in ZoomSDK.h

   sample code:

       NSString *bundlePath = [[NSBundle mainBundle] bundlePath];

      [[ZoomSDK sharedSDK] setCustomBundlePath:bundlePath fileName:@"ZoomSDK_Test”];

Best