Skip to content

Commit 07684c0

Browse files
authored
bug: Incorrect copy for "Run" command when approving execution (#8179)
1 parent f934363 commit 07684c0

File tree

18 files changed

+21
-12
lines changed

18 files changed

+21
-12
lines changed

webview-ui/src/components/chat/ChatRow.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,9 @@ export const ChatRowContent = ({
232232
) : (
233233
<TerminalSquare className="size-4" aria-label="Terminal icon" />
234234
),
235-
<span style={{ color: normalColor, fontWeight: "bold" }}>{t("chat:runCommand.title")}</span>,
235+
<span style={{ color: normalColor, fontWeight: "bold" }}>
236+
{t("chat:commandExecution.running")}
237+
</span>,
236238
]
237239
case "use_mcp_server":
238240
const mcpServerUse = safeJsonParse<ClineAskUseMcpServer>(message.text)

webview-ui/src/i18n/locales/ca/chat.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/de/chat.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/en/chat.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
}
7070
},
7171
"runCommand": {
72-
"title": "Command",
72+
"title": "Run",
7373
"tooltip": "Execute this command"
7474
},
7575
"proceedWhileRunning": {
@@ -222,8 +222,8 @@
222222
},
223223
"commandOutput": "Command Output",
224224
"commandExecution": {
225-
"running": "Running",
226225
"abort": "Abort",
226+
"running": "Running",
227227
"pid": "PID: {{pid}}",
228228
"exitStatus": "Exited with status {{exitCode}}",
229229
"manageCommands": "Auto-approved commands",

webview-ui/src/i18n/locales/es/chat.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/fr/chat.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/hi/chat.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/id/chat.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/it/chat.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/ja/chat.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)