diff --git a/src/pages/DashboardHome.vue b/src/pages/DashboardHome.vue index 186184ec9..9a9e2a828 100644 --- a/src/pages/DashboardHome.vue +++ b/src/pages/DashboardHome.vue @@ -57,6 +57,7 @@ v-model="page" :records="importantHeartBeatList.length" :per-page="perPage" + :options="paginationConfig" /> @@ -81,6 +82,17 @@ export default { page: 1, perPage: 25, heartBeatList: [], + paginationConfig: { + texts:{ + count:`${this.$t("Showing {from} to {to} of {count} records")}|{count} ${this.$t("records")}|${this.$t("One record")}`, + first:this.$t("First"), + last:this.$t("Last"), + nextPage:'>', + nextChunk:'>>', + prevPage:'<', + prevChunk:'<<' + } + } } }, computed: { diff --git a/src/pages/Details.vue b/src/pages/Details.vue index c93e47d0b..e4aeb28d0 100644 --- a/src/pages/Details.vue +++ b/src/pages/Details.vue @@ -181,6 +181,7 @@ v-model="page" :records="importantHeartBeatList.length" :per-page="perPage" + :options="paginationConfig" /> @@ -237,6 +238,17 @@ export default { heartBeatList: [], toggleCertInfoBox: false, showPingChartBox: true, + paginationConfig: { + texts:{ + count:`${this.$t("Showing {from} to {to} of {count} records")}|{count} ${this.$t("records")}|${this.$t("One record")}`, + first:this.$t("First"), + last:this.$t("Last"), + nextPage:'>', + nextChunk:'>>', + prevPage:'<', + prevChunk:'<<' + } + } } }, computed: {