diff --git a/apps/web/src/i18n/locales/en.json b/apps/web/src/i18n/locales/en.json index b30a3de1..794fafaf 100644 --- a/apps/web/src/i18n/locales/en.json +++ b/apps/web/src/i18n/locales/en.json @@ -1033,6 +1033,10 @@ "chatOutput": "Chat Output", "heartbeatInput": "Heartbeat Input", "heartbeatOutput": "Heartbeat Output", + "scheduleInput": "Schedule Input", + "scheduleOutput": "Schedule Output", + "totalInput": "Total Input", + "totalOutput": "Total Output", "cacheRead": "Cache Read", "cacheWrite": "Cache Write", "noCache": "No Cache", @@ -1041,6 +1045,13 @@ "modelDistribution": "Model Usage Distribution", "filterByModel": "Filter by Model", "allModels": "All Models", + "sessionType": "Session Type", + "allTypes": "All Types", + "chat": "Chat", + "heartbeat": "Heartbeat", + "schedule": "Schedule", + "inputTokens": "Input Tokens", + "outputTokens": "Output Tokens", "dateFrom": "From", "dateTo": "To", "chartPie": "Pie", diff --git a/apps/web/src/i18n/locales/zh.json b/apps/web/src/i18n/locales/zh.json index c49b92a3..c2bd771c 100644 --- a/apps/web/src/i18n/locales/zh.json +++ b/apps/web/src/i18n/locales/zh.json @@ -1029,6 +1029,10 @@ "chatOutput": "对话输出", "heartbeatInput": "心跳输入", "heartbeatOutput": "心跳输出", + "scheduleInput": "定时任务输入", + "scheduleOutput": "定时任务输出", + "totalInput": "总输入", + "totalOutput": "总输出", "cacheRead": "缓存读取", "cacheWrite": "缓存写入", "noCache": "无缓存", @@ -1037,6 +1041,13 @@ "modelDistribution": "模型用量分布", "filterByModel": "按模型筛选", "allModels": "全部模型", + "sessionType": "会话类型", + "allTypes": "全部类型", + "chat": "对话", + "heartbeat": "心跳", + "schedule": "定时任务", + "inputTokens": "输入 Tokens", + "outputTokens": "输出 Tokens", "dateFrom": "开始日期", "dateTo": "结束日期", "chartPie": "饼图", diff --git a/apps/web/src/pages/usage/index.vue b/apps/web/src/pages/usage/index.vue index 38660318..284a41fd 100644 --- a/apps/web/src/pages/usage/index.vue +++ b/apps/web/src/pages/usage/index.vue @@ -1,5 +1,5 @@