MudBlazor:MudTablePager 更改 'Rows per Page' 的语言

MudBlazor: MudTablePager change language of 'Rows per Page'

是否可以更改此文本:

例如'Elemente pro Seite'?

我更改了 InfoFormat,但找不到更改左侧文本的选项?

代码:

<PagerContent>
    <MudTablePager InfoFormat="@infoFormat"/>
</PagerContent>

@code {
      private string infoFormat = "{first_item}-{last_item} von {all_items}";
}

在此先感谢您的帮助。

有个属性 RowsPerPageString:

<MudTablePager PageSizeOptions="new int[] { 20, 50}" RowsPerPageString="your-own-text" />