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.
mat-paginator
For a quick and dirty solution use this.paginator._intl property.
In my ...component.ts I have:
...component.ts
@ViewChild(MatPaginator) paginator: MatPaginator; ngOnInit() { ... this.paginator._intl.itemsPerPageLabel = 'My translation for items per page.'; ... }