I am in the process of transitioning my application from ng2-translate to native i18n support. I have encountered an issue when trying to translate a <md-select> element with multiple options:
<md-select placeholder="Salutation" i18n-placeholder>
<md-option *ngFor="let s of salutations" [value]="s.value">{{s.name}}</md-option>
</md-select>
The documentation does not provide guidance on how to include the option values in my XLF file when they are delivered through TS. Any assistance would be greatly appreciated.