Quasar 更改 table 分页标签中的单词 'of'

Quasar change word 'of' in table pagination label

是否可以更改 table 分页标签中 字词?

例如:将1-10 of 100改为1-10 de 100

更改标签的函数只提供(firstRowIndex, endRowIndex, totalRowsNumber)。

谢谢。

已编辑 |对于 i18n

例如

export const ptPT = {
   general: {
     of: 'de',
   }
}

.vue 文件:

如何获取个字的分页进行翻译?

<p> {{$t("general.of")}} </p>

一种方法是你可以在类星体中设置语言,它会改变它。

Quasar.lang.set(Quasar.lang.es)

codepen - https://codepen.io/Pratik__007/pen/LYpKNRB