Zoom server choose and language set

i need switch zoom service to china for better network connnect,
but it change my language to chinese even system language is english

        ZoomSDKInitParams initParams=new ZoomSDKInitParams();
        initParams.appKey=APP_KEY;
        initParams.appSecret=APP_SECRET;
        initParams.appLocal= ZoomAppLocal.ZoomLocale_CN;
        initParams.enableLog=true;
        initParams.logSize=30;
        initParams.domain=WEB_DOMAIN;
        initParams.videoRawDataMemoryMode= 
        ZoomSDKRawDataMemoryMode.ZoomSDKRawDataMemoryModeStack;
        zoomSDK.initialize(this,zoomSDKInitializeListener, initParams);

Hi @199412241617.zl,

Thanks for the post. If you would like to change the meeting language, please use the interface setSdkLocale(https://zoom.github.io/zoom-sdk-android/us/zoom/sdk/ZoomSDK.html#setSdkLocale-android.content.Context-java.util.Locale-) to set the language.

Thanks!