How to translate mat-paginator in Angular 4?

后端 未结 7 2293
无人及你
无人及你 2020-12-02 22:10

Do you have any ideas how can I translate \"Items per page\" in Angular\'s mat-paginator tag? The mat-paginator is an element from Material Design.

7条回答
  •  不思量自难忘°
    2020-12-02 22:48

    For a quick and dirty solution use this.paginator._intl property.

    In my ...component.ts I have:

    @ViewChild(MatPaginator) paginator: MatPaginator;
    
    ngOnInit() {
      ...
      this.paginator._intl.itemsPerPageLabel = 'My translation for items per page.';
      ...
    }
    

提交回复
热议问题