diff --git a/webview-ui/src/components/chat/ChatRow.tsx b/webview-ui/src/components/chat/ChatRow.tsx index 33c9acb2df..ff44e799fd 100644 --- a/webview-ui/src/components/chat/ChatRow.tsx +++ b/webview-ui/src/components/chat/ChatRow.tsx @@ -285,7 +285,7 @@ export const ChatRowContent = ({ ), - {t("chat:commandExecution.running")} + {isCommandExecuting ? t("chat:commandExecution.running") : t("chat:commandExecution.executed")} , ] case "use_mcp_server": diff --git a/webview-ui/src/i18n/locales/ca/chat.json b/webview-ui/src/i18n/locales/ca/chat.json index b4fa63796d..578fc8dae5 100644 --- a/webview-ui/src/i18n/locales/ca/chat.json +++ b/webview-ui/src/i18n/locales/ca/chat.json @@ -229,6 +229,7 @@ "commandExecution": { "abort": "Avortar", "running": "En execució", + "executed": "Executat", "pid": "PID: {{pid}}", "exitStatus": "S'ha sortit amb l'estat {{exitCode}}", "manageCommands": "Comandes aprovades automàticament", diff --git a/webview-ui/src/i18n/locales/de/chat.json b/webview-ui/src/i18n/locales/de/chat.json index da2f075978..3cb2b3a3fa 100644 --- a/webview-ui/src/i18n/locales/de/chat.json +++ b/webview-ui/src/i18n/locales/de/chat.json @@ -229,6 +229,7 @@ "commandExecution": { "abort": "Abbrechen", "running": "Wird ausgeführt", + "executed": "Ausgeführt", "pid": "PID: {{pid}}", "exitStatus": "Beendet mit Status {{exitCode}}", "manageCommands": "Automatisch genehmigte Befehle", diff --git a/webview-ui/src/i18n/locales/en/chat.json b/webview-ui/src/i18n/locales/en/chat.json index 8caf0e9514..0dc4c5aa1d 100644 --- a/webview-ui/src/i18n/locales/en/chat.json +++ b/webview-ui/src/i18n/locales/en/chat.json @@ -272,6 +272,7 @@ "commandExecution": { "abort": "Abort", "running": "Running", + "executed": "Executed", "pid": "PID: {{pid}}", "exitStatus": "Exited with status {{exitCode}}", "manageCommands": "Auto-approved commands", diff --git a/webview-ui/src/i18n/locales/es/chat.json b/webview-ui/src/i18n/locales/es/chat.json index b8ed12ac96..c90ab68089 100644 --- a/webview-ui/src/i18n/locales/es/chat.json +++ b/webview-ui/src/i18n/locales/es/chat.json @@ -229,6 +229,7 @@ "commandExecution": { "abort": "Abortar", "running": "Ejecutando", + "executed": "Ejecutado", "pid": "PID: {{pid}}", "exitStatus": "Salió con el estado {{exitCode}}", "manageCommands": "Comandos aprobados automáticamente", diff --git a/webview-ui/src/i18n/locales/fr/chat.json b/webview-ui/src/i18n/locales/fr/chat.json index e4a1f66f12..5780251a60 100644 --- a/webview-ui/src/i18n/locales/fr/chat.json +++ b/webview-ui/src/i18n/locales/fr/chat.json @@ -229,6 +229,7 @@ "commandExecution": { "abort": "Abandonner", "running": "En cours d'exécution", + "executed": "Exécuté", "pid": "PID : {{pid}}", "exitStatus": "Terminé avec le statut {{exitCode}}", "manageCommands": "Commandes approuvées automatiquement", diff --git a/webview-ui/src/i18n/locales/hi/chat.json b/webview-ui/src/i18n/locales/hi/chat.json index f8fc354c4f..c88637bfe4 100644 --- a/webview-ui/src/i18n/locales/hi/chat.json +++ b/webview-ui/src/i18n/locales/hi/chat.json @@ -229,6 +229,7 @@ "commandExecution": { "abort": "रद्द करें", "running": "चल रहा है", + "executed": "निष्पादित", "pid": "पीआईडी: {{pid}}", "exitStatus": "{{exitCode}} स्थिति के साथ बाहर निकल गया", "manageCommands": "स्वतः-अनुमोदित कमांड", diff --git a/webview-ui/src/i18n/locales/id/chat.json b/webview-ui/src/i18n/locales/id/chat.json index b63370a51e..9e0568f617 100644 --- a/webview-ui/src/i18n/locales/id/chat.json +++ b/webview-ui/src/i18n/locales/id/chat.json @@ -280,6 +280,7 @@ "commandExecution": { "abort": "Batalkan", "running": "Menjalankan", + "executed": "Dijalankan", "pid": "PID: {{pid}}", "exitStatus": "Keluar dengan status {{exitCode}}", "manageCommands": "Perintah yang disetujui secara otomatis", diff --git a/webview-ui/src/i18n/locales/it/chat.json b/webview-ui/src/i18n/locales/it/chat.json index af00a2f400..73c7d9be03 100644 --- a/webview-ui/src/i18n/locales/it/chat.json +++ b/webview-ui/src/i18n/locales/it/chat.json @@ -229,6 +229,7 @@ "commandExecution": { "abort": "Interrompi", "running": "In esecuzione", + "executed": "Eseguito", "pid": "PID: {{pid}}", "exitStatus": "Uscito con stato {{exitCode}}", "manageCommands": "Comandi approvati automaticamente", diff --git a/webview-ui/src/i18n/locales/ja/chat.json b/webview-ui/src/i18n/locales/ja/chat.json index 88ba4dd38e..4438433eb7 100644 --- a/webview-ui/src/i18n/locales/ja/chat.json +++ b/webview-ui/src/i18n/locales/ja/chat.json @@ -229,6 +229,7 @@ "commandExecution": { "abort": "中止", "running": "実行中", + "executed": "実行済み", "pid": "PID: {{pid}}", "exitStatus": "ステータス {{exitCode}} で終了しました", "manageCommands": "自動承認されたコマンド", diff --git a/webview-ui/src/i18n/locales/ko/chat.json b/webview-ui/src/i18n/locales/ko/chat.json index a5dcf224c0..83952c415c 100644 --- a/webview-ui/src/i18n/locales/ko/chat.json +++ b/webview-ui/src/i18n/locales/ko/chat.json @@ -229,6 +229,7 @@ "commandExecution": { "abort": "중단", "running": "실행 중", + "executed": "실행됨", "pid": "PID: {{pid}}", "exitStatus": "상태 {{exitCode}}(으)로 종료됨", "manageCommands": "자동 승인된 명령", diff --git a/webview-ui/src/i18n/locales/nl/chat.json b/webview-ui/src/i18n/locales/nl/chat.json index f717865f3a..cdadb4d500 100644 --- a/webview-ui/src/i18n/locales/nl/chat.json +++ b/webview-ui/src/i18n/locales/nl/chat.json @@ -223,6 +223,7 @@ "commandOutput": "Commando-uitvoer", "commandExecution": { "running": "Lopend", + "executed": "Uitgevoerd", "abort": "Afbreken", "pid": "PID: {{pid}}", "exitStatus": "Afgesloten met status {{exitCode}}", diff --git a/webview-ui/src/i18n/locales/pl/chat.json b/webview-ui/src/i18n/locales/pl/chat.json index 1b928ede34..06dca7760d 100644 --- a/webview-ui/src/i18n/locales/pl/chat.json +++ b/webview-ui/src/i18n/locales/pl/chat.json @@ -228,6 +228,7 @@ "commandOutput": "Wyjście polecenia", "commandExecution": { "running": "Wykonywanie", + "executed": "Wykonano", "abort": "Przerwij", "pid": "PID: {{pid}}", "exitStatus": "Zakończono ze statusem {{exitCode}}", diff --git a/webview-ui/src/i18n/locales/pt-BR/chat.json b/webview-ui/src/i18n/locales/pt-BR/chat.json index 54c44ffd04..1fd10f699f 100644 --- a/webview-ui/src/i18n/locales/pt-BR/chat.json +++ b/webview-ui/src/i18n/locales/pt-BR/chat.json @@ -228,6 +228,7 @@ "commandOutput": "Saída do comando", "commandExecution": { "running": "Executando", + "executed": "Executado", "abort": "Interromper", "pid": "PID: {{pid}}", "exitStatus": "Saiu com o status {{exitCode}}", diff --git a/webview-ui/src/i18n/locales/ru/chat.json b/webview-ui/src/i18n/locales/ru/chat.json index ba0e9fdd53..cddd126482 100644 --- a/webview-ui/src/i18n/locales/ru/chat.json +++ b/webview-ui/src/i18n/locales/ru/chat.json @@ -223,6 +223,7 @@ "commandOutput": "Вывод команды", "commandExecution": { "running": "Выполняется", + "executed": "Выполнено", "abort": "Прервать", "pid": "PID: {{pid}}", "exitStatus": "Завершено со статусом {{exitCode}}", diff --git a/webview-ui/src/i18n/locales/tr/chat.json b/webview-ui/src/i18n/locales/tr/chat.json index e3e1682ab8..d9305401e7 100644 --- a/webview-ui/src/i18n/locales/tr/chat.json +++ b/webview-ui/src/i18n/locales/tr/chat.json @@ -228,6 +228,7 @@ "commandOutput": "Komut Çıktısı", "commandExecution": { "running": "Çalışıyor", + "executed": "Yürütüldü", "abort": "İptal Et", "pid": "PID: {{pid}}", "exitStatus": "{{exitCode}} durumuyla çıkıldı", diff --git a/webview-ui/src/i18n/locales/vi/chat.json b/webview-ui/src/i18n/locales/vi/chat.json index bbc6f9fe9d..b785c72cf3 100644 --- a/webview-ui/src/i18n/locales/vi/chat.json +++ b/webview-ui/src/i18n/locales/vi/chat.json @@ -228,6 +228,7 @@ "commandOutput": "Kết quả lệnh", "commandExecution": { "running": "Đang chạy", + "executed": "Đã thực thi", "abort": "Hủy bỏ", "pid": "PID: {{pid}}", "exitStatus": "Đã thoát với trạng thái {{exitCode}}", diff --git a/webview-ui/src/i18n/locales/zh-CN/chat.json b/webview-ui/src/i18n/locales/zh-CN/chat.json index d92cd5a54b..0f47624ab8 100644 --- a/webview-ui/src/i18n/locales/zh-CN/chat.json +++ b/webview-ui/src/i18n/locales/zh-CN/chat.json @@ -228,6 +228,7 @@ "commandOutput": "命令输出", "commandExecution": { "running": "正在运行", + "executed": "已执行", "abort": "中止", "pid": "PID: {{pid}}", "exitStatus": "已退出,状态码 {{exitCode}}", diff --git a/webview-ui/src/i18n/locales/zh-TW/chat.json b/webview-ui/src/i18n/locales/zh-TW/chat.json index ef56f9622a..d1f15611ed 100644 --- a/webview-ui/src/i18n/locales/zh-TW/chat.json +++ b/webview-ui/src/i18n/locales/zh-TW/chat.json @@ -275,6 +275,7 @@ "commandExecution": { "abort": "中止", "running": "執行中", + "executed": "已執行", "pid": "PID: {{pid}}", "exitStatus": "已結束,狀態碼 {{exitCode}}", "manageCommands": "自動核准的命令",