Skip to content

Commit f580c08

Browse files
perf: unified copywriting
1 parent e12a9a6 commit f580c08

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

ui/src/views/application-overview/component/StatisticsCharts.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ const tokenUsageCount = ref(10)
228228
const topQuestionsCount = ref(10)
229229
const tokenUsageOption = computed(() => {
230230
return {
231-
title: t('home.charts.tokenUsage'),
231+
title: 'Tokens ' + t('home.usage') + ' · Top ' + t('views.chatLog.table.user'),
232232
xData: getAttrsArray(props.tokenUsage?.slice(0, tokenUsageCount.value), 'username'),
233233
yData: [
234234
{
@@ -241,7 +241,8 @@ const tokenUsageOption = computed(() => {
241241
})
242242
const topQuestionsOption = computed(() => {
243243
return {
244-
title: t('home.charts.topQuestions'),
244+
title: t('home.chatCount') + ' · Top ' + t('views.chatLog.table.user'),
245+
245246
xData: getAttrsArray(props.topQuestions?.slice(0, topQuestionsCount.value), 'username'),
246247
yData: [
247248
{

0 commit comments

Comments
 (0)