<ion-item>
<ion-label >{{ 'branch' | translate }}</ion-label>
<ion-select [(ngModel)]="defualtBranch"
okText="{{ 'okText' | translate }}"
cancelText="{{ 'cancelText' | translate }}"
[selectOptions]="{{ 'selectOptionsBranch' | translate }}" >
<ion-option *ngFor="let branch of branchs; let i=index" value="{{branch.BranchCode}}">
{{branch.BranchName}}
</ion-option>
</ion-select>
</ion-item>
How to use selectOptions multi-lang?
Don't work this line [selectOptions]="{{ 'selectOptionsBranch' | translate }}"