我正在使用mat-select和* ngFor和mat-option来显示状态。我需要正确翻译每个状态。
<mat-select formControlName="status" i18n="@@statusOptions">
<mat-option *ngFor="let status of getStatusesOptions()" [value]="status">
{{statusesEnum[status]}}
</mat-option>
</mat-select>
我尝试了以下(以及几种变体),但均未成功。
<trans-unit id="statusOptions" datatype="html">
<source>
<x id="START_TAG_MAT-OPTION" ctype="x-mat-option" equiv-text="<mat-option>"/>
<x id="INTERPOLATION" equiv-text="{{statusesEnum[status] === 'all'}}">all</x>
<x id="CLOSE_TAG_MAT-OPTION" ctype="x-mat-option" equiv-text="</mat-option>"/>
</source>
<target>
<x id="START_TAG_MAT-OPTION" ctype="x-mat-option" equiv-text="<mat-option>"/>
<x id="INTERPOLATION" equiv-text="{{statusesEnum[status] === 'all'}}">All</x>
<x id="CLOSE_TAG_MAT-OPTION" ctype="x-mat-option" equiv-text="</mat-option>"/>
</target>
</trans-unit>
将“ all”的单个示例转换为“ All”的正确语法是什么?非常感谢。