Ionic 4: как сменить язык в "OneSignal" - PullRequest
0 голосов
/ 11 ноября 2018

как поменять язык в OneSignal? Есть ли способ сделать это, когда я инициирую oneSignal?

enter image description here

мой код:

notificationInit(userID) {
    this.oneSignal.startInit(*****, *****);
    this.oneSignal.setSubscription(true);
    this.oneSignal.sendTag('userid', userID);
    this.oneSignal.inFocusDisplaying(this.oneSignal.OSInFocusDisplayOption.InAppAlert);
    this.oneSignal.handleNotificationReceived().subscribe(data => 
      this.onPushReceived(data.payload)
    );
    this.oneSignal.handleNotificationOpened().subscribe(() => {
      console.log('opened notification');
      // do something when a notification is opened
    });

    this.oneSignal.endInit();
  }
...