Custom ion-select button

I’m trying to do my app multilanguage and, I don’t know how to custom ok button’s language and cancel button’s language. If anyono could guide me.

<div id="language-div">
    <ion-item>
      <ion-label>{{ language.languageSelectLabel }}</ion-label>
      <ion-select name="language" [selectedText]="selectcategory" [(ngModel)]="selectcategory"
        (ionChange)="codeSelected()" [okText]="OK" cancelText="Dismiss">
        <ion-select-option value="1">{{ language.spanishSelectLabel }}</ion-select-option>
        <ion-select-option value="2">{{ language.englishSelectLabel }}</ion-select-option>
      </ion-select>
    </ion-item>
  </div>

You can just create any variable and pass the multilingual value to it.
And then, read the value in your ion-select tag.

<ion-select cancelText="{{ any variable }}"> 
</ion-select>