как поменять язык в OneSignal?
Есть ли способ сделать это, когда я инициирую oneSignal?
мой код:
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();
}