diff --git a/webview-ui/src/components/chat/ContextCondenseRow.tsx b/webview-ui/src/components/chat/ContextCondenseRow.tsx index 1d9a0e53a2..579337a69d 100644 --- a/webview-ui/src/components/chat/ContextCondenseRow.tsx +++ b/webview-ui/src/components/chat/ContextCondenseRow.tsx @@ -15,11 +15,9 @@ const ContextCondenseRow = ({ cost, prevContextTokens, newContextTokens, summary onClick={() => setIsExpanded(!isExpanded)}>
- - {t("chat:contextCondense.title", "Context Condensed")} - + {t("chat:contextCondense.title")} - {prevContextTokens.toLocaleString()} → {newContextTokens.toLocaleString()} tokens + {prevContextTokens.toLocaleString()} → {newContextTokens.toLocaleString()} {t("tokens")} 0 ? 1 : 0 }}>${cost.toFixed(2)}
@@ -28,7 +26,7 @@ const ContextCondenseRow = ({ cost, prevContextTokens, newContextTokens, summary {isExpanded && (
-

Conversation Summary

+

{t("chat:contextCondense.conversationSummary")}

{summary}
)} diff --git a/webview-ui/src/i18n/locales/en/chat.json b/webview-ui/src/i18n/locales/en/chat.json index 22b3386b30..624381c8b0 100644 --- a/webview-ui/src/i18n/locales/en/chat.json +++ b/webview-ui/src/i18n/locales/en/chat.json @@ -129,6 +129,11 @@ }, "current": "Current" }, + "contextCondense": { + "title": "Context Condensed", + "conversationSummary": "Conversation Summary", + "tokens": "tokens" + }, "instructions": { "wantsToFetch": "Roo wants to fetch detailed instructions to assist with the current task" },