mdline
1
Hello,
the text was not transated.
<ion-list radio-group [(ngModel)]="person">
<ion-item *ngFor="let person of persons">
<ion-label>{{ person.name || translate }}</ion-label>
<ion-radio value="person"></ion-radio>
</ion-item>
</ion-list>
MattE
2
What translation do you expect?
If it isn’t defined in your translation json, it won’t get translated.
And person.name seems like a weird string to translate.
mdline
3
My Mistake
{{ person.department|| translate }}
I have three departments A00, B00, C01, D00.
This should be translated to any string
MattE
4
Show me your translation json + the setup of the translateLoader.