Dynamic radio buttons translation not work

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>

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.

My Mistake

{{ person.department|| translate }}

I have three departments A00, B00, C01, D00.
This should be translated to any string

Show me your translation json + the setup of the translateLoader.