Skip to content

Commit 62de60b

Browse files
committed
fix(desktop): use sentence case in trace
Mixed title casing made adjacent usage labels look inconsistent. Generated-by: OpenAI Codex Signed-off-by: Jiawei Zhao <Phoenix500526@163.com>
1 parent c713741 commit 62de60b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

apps/desktop/src/renderer/locales/conversation-copy.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -867,10 +867,10 @@ const COPY = {
867867
},
868868
durationUsage: {
869869
title: 'Time breakdown',
870-
center: 'Recorded Time',
870+
center: 'Recorded time',
871871
segment: {
872-
model: (count) => `LLM Calls × ${count}`,
873-
tool: (count) => `Tool Runs × ${count}`,
872+
model: (count) => `LLM calls × ${count}`,
873+
tool: (count) => `Tool runs × ${count}`,
874874
},
875875
},
876876
coveragePartial: (parts) =>

0 commit comments

Comments
 (0)