我使用角度2而我使用ngx-translate。 我有两种语言:[" en"," fa"]我在下面的列表中显示它们:
<md-select [(ngModel)]="currentLang" #langSelect="ngModel" (ngModelChange)="translate.use(currentLang);rtl(currentLang)">
<md-option *ngFor="let lang of translate.getLangs()" [value]="lang" class="data_font"><span class="data_font">{{lang}}</span></md-option>
</md-select>
如何在列表中翻译语言的名称({{lang}})?我试过{{lang |翻译}}但它没有用。