I'm new in ionic and currently I'm building a little app. I successfully got my ionic app localized with ngx-translate and also the angular localization for pipelines. Only thing I am wondering is how do I get the default ionic elements translated?
Let's say I have the following code:
...
<ion-item>
<ion-label position="stacked">{{'item.brand' | translate }}</ion-label>
<ion-select formControlName="itemBrand">
<ion-select-option *ngFor="let option of brands | async" [value]="option.id">{{ option.name }}
</ion-select-option>
</ion-select>
</ion-item>
In any language the buttons of the popup will be in English.
I'm sure I am missing a little piece, but I didn't found anything searching the internet so far.
I'm using Ionic 5 with Angular 8.2 and ngx-translate 12.
Thanks for your help