【发布时间】:2020-05-08 23:25:24
【问题描述】:
我想在 matpaginator 标签中翻译 itemsPerPageLabel、nextPageLabel、previousPageLabel、firstPageLabel、lastPageLabel
但我试图创建这样的类,但它不起作用。我的意思是订阅有效,但是当我更改语言时,标签无法更改
@Injectable()
export class MatPaginatorCustom extends MatPaginatorIntl {
constructor(public translateService: TranslateService) {
super();
this.translateService.stream('vehicle.ubdate.matSnackBar.message')
.subscribe(labelValue => {
console.log(labelValue);
this.itemsPerPageLabel = labelValue;
});
}
}
我使用 Angular 8 和 ngx-translate
【问题讨论】:
标签: angular angular-material translate ngx-translate