mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix: show correct status for execute_command UI (Running vs Executed)
EXT-672: The execute_command UI now accurately shows the terminal state: - Shows "Running" when a command is actively executing - Shows "Executed" when the command has completed Added "executed" translation key to all 18 locale files.
This commit is contained in:
parent
e7965d9b45
commit
c3f23c5eac
19 changed files with 19 additions and 1 deletions
|
|
@ -282,7 +282,7 @@ export const ChatRowContent = ({
|
|||
<TerminalSquare className="size-4" aria-label="Terminal icon" />
|
||||
),
|
||||
<span style={{ color: normalColor, fontWeight: "bold" }}>
|
||||
{t("chat:commandExecution.running")}
|
||||
{isCommandExecuting ? t("chat:commandExecution.running") : t("chat:commandExecution.executed")}
|
||||
</span>,
|
||||
]
|
||||
case "use_mcp_server":
|
||||
|
|
|
|||
1
webview-ui/src/i18n/locales/ca/chat.json
generated
1
webview-ui/src/i18n/locales/ca/chat.json
generated
|
|
@ -224,6 +224,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",
|
||||
|
|
|
|||
1
webview-ui/src/i18n/locales/de/chat.json
generated
1
webview-ui/src/i18n/locales/de/chat.json
generated
|
|
@ -224,6 +224,7 @@
|
|||
"commandExecution": {
|
||||
"abort": "Abbrechen",
|
||||
"running": "Wird ausgeführt",
|
||||
"executed": "Ausgeführt",
|
||||
"pid": "PID: {{pid}}",
|
||||
"exitStatus": "Beendet mit Status {{exitCode}}",
|
||||
"manageCommands": "Automatisch genehmigte Befehle",
|
||||
|
|
|
|||
|
|
@ -250,6 +250,7 @@
|
|||
"commandExecution": {
|
||||
"abort": "Abort",
|
||||
"running": "Running",
|
||||
"executed": "Executed",
|
||||
"pid": "PID: {{pid}}",
|
||||
"exitStatus": "Exited with status {{exitCode}}",
|
||||
"manageCommands": "Auto-approved commands",
|
||||
|
|
|
|||
1
webview-ui/src/i18n/locales/es/chat.json
generated
1
webview-ui/src/i18n/locales/es/chat.json
generated
|
|
@ -224,6 +224,7 @@
|
|||
"commandExecution": {
|
||||
"abort": "Abortar",
|
||||
"running": "Ejecutando",
|
||||
"executed": "Ejecutado",
|
||||
"pid": "PID: {{pid}}",
|
||||
"exitStatus": "Salió con el estado {{exitCode}}",
|
||||
"manageCommands": "Comandos aprobados automáticamente",
|
||||
|
|
|
|||
1
webview-ui/src/i18n/locales/fr/chat.json
generated
1
webview-ui/src/i18n/locales/fr/chat.json
generated
|
|
@ -224,6 +224,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",
|
||||
|
|
|
|||
1
webview-ui/src/i18n/locales/hi/chat.json
generated
1
webview-ui/src/i18n/locales/hi/chat.json
generated
|
|
@ -224,6 +224,7 @@
|
|||
"commandExecution": {
|
||||
"abort": "रद्द करें",
|
||||
"running": "चल रहा है",
|
||||
"executed": "निष्पादित",
|
||||
"pid": "पीआईडी: {{pid}}",
|
||||
"exitStatus": "{{exitCode}} स्थिति के साथ बाहर निकल गया",
|
||||
"manageCommands": "स्वतः-अनुमोदित कमांड",
|
||||
|
|
|
|||
1
webview-ui/src/i18n/locales/id/chat.json
generated
1
webview-ui/src/i18n/locales/id/chat.json
generated
|
|
@ -255,6 +255,7 @@
|
|||
"commandExecution": {
|
||||
"abort": "Batalkan",
|
||||
"running": "Menjalankan",
|
||||
"executed": "Dijalankan",
|
||||
"pid": "PID: {{pid}}",
|
||||
"exitStatus": "Keluar dengan status {{exitCode}}",
|
||||
"manageCommands": "Perintah yang disetujui secara otomatis",
|
||||
|
|
|
|||
1
webview-ui/src/i18n/locales/it/chat.json
generated
1
webview-ui/src/i18n/locales/it/chat.json
generated
|
|
@ -224,6 +224,7 @@
|
|||
"commandExecution": {
|
||||
"abort": "Interrompi",
|
||||
"running": "In esecuzione",
|
||||
"executed": "Eseguito",
|
||||
"pid": "PID: {{pid}}",
|
||||
"exitStatus": "Uscito con stato {{exitCode}}",
|
||||
"manageCommands": "Comandi approvati automaticamente",
|
||||
|
|
|
|||
1
webview-ui/src/i18n/locales/ja/chat.json
generated
1
webview-ui/src/i18n/locales/ja/chat.json
generated
|
|
@ -224,6 +224,7 @@
|
|||
"commandExecution": {
|
||||
"abort": "中止",
|
||||
"running": "実行中",
|
||||
"executed": "実行済み",
|
||||
"pid": "PID: {{pid}}",
|
||||
"exitStatus": "ステータス {{exitCode}} で終了しました",
|
||||
"manageCommands": "自動承認されたコマンド",
|
||||
|
|
|
|||
1
webview-ui/src/i18n/locales/ko/chat.json
generated
1
webview-ui/src/i18n/locales/ko/chat.json
generated
|
|
@ -224,6 +224,7 @@
|
|||
"commandExecution": {
|
||||
"abort": "중단",
|
||||
"running": "실행 중",
|
||||
"executed": "실행됨",
|
||||
"pid": "PID: {{pid}}",
|
||||
"exitStatus": "상태 {{exitCode}}(으)로 종료됨",
|
||||
"manageCommands": "자동 승인된 명령",
|
||||
|
|
|
|||
1
webview-ui/src/i18n/locales/nl/chat.json
generated
1
webview-ui/src/i18n/locales/nl/chat.json
generated
|
|
@ -218,6 +218,7 @@
|
|||
"commandOutput": "Commando-uitvoer",
|
||||
"commandExecution": {
|
||||
"running": "Lopend",
|
||||
"executed": "Uitgevoerd",
|
||||
"abort": "Afbreken",
|
||||
"pid": "PID: {{pid}}",
|
||||
"exitStatus": "Afgesloten met status {{exitCode}}",
|
||||
|
|
|
|||
1
webview-ui/src/i18n/locales/pl/chat.json
generated
1
webview-ui/src/i18n/locales/pl/chat.json
generated
|
|
@ -223,6 +223,7 @@
|
|||
"commandOutput": "Wyjście polecenia",
|
||||
"commandExecution": {
|
||||
"running": "Wykonywanie",
|
||||
"executed": "Wykonano",
|
||||
"abort": "Przerwij",
|
||||
"pid": "PID: {{pid}}",
|
||||
"exitStatus": "Zakończono ze statusem {{exitCode}}",
|
||||
|
|
|
|||
1
webview-ui/src/i18n/locales/pt-BR/chat.json
generated
1
webview-ui/src/i18n/locales/pt-BR/chat.json
generated
|
|
@ -223,6 +223,7 @@
|
|||
"commandOutput": "Saída do comando",
|
||||
"commandExecution": {
|
||||
"running": "Executando",
|
||||
"executed": "Executado",
|
||||
"abort": "Interromper",
|
||||
"pid": "PID: {{pid}}",
|
||||
"exitStatus": "Saiu com o status {{exitCode}}",
|
||||
|
|
|
|||
1
webview-ui/src/i18n/locales/ru/chat.json
generated
1
webview-ui/src/i18n/locales/ru/chat.json
generated
|
|
@ -218,6 +218,7 @@
|
|||
"commandOutput": "Вывод команды",
|
||||
"commandExecution": {
|
||||
"running": "Выполняется",
|
||||
"executed": "Выполнено",
|
||||
"abort": "Прервать",
|
||||
"pid": "PID: {{pid}}",
|
||||
"exitStatus": "Завершено со статусом {{exitCode}}",
|
||||
|
|
|
|||
1
webview-ui/src/i18n/locales/tr/chat.json
generated
1
webview-ui/src/i18n/locales/tr/chat.json
generated
|
|
@ -223,6 +223,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ı",
|
||||
|
|
|
|||
1
webview-ui/src/i18n/locales/vi/chat.json
generated
1
webview-ui/src/i18n/locales/vi/chat.json
generated
|
|
@ -223,6 +223,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}}",
|
||||
|
|
|
|||
1
webview-ui/src/i18n/locales/zh-CN/chat.json
generated
1
webview-ui/src/i18n/locales/zh-CN/chat.json
generated
|
|
@ -223,6 +223,7 @@
|
|||
"commandOutput": "命令输出",
|
||||
"commandExecution": {
|
||||
"running": "正在运行",
|
||||
"executed": "已执行",
|
||||
"abort": "中止",
|
||||
"pid": "PID: {{pid}}",
|
||||
"exitStatus": "已退出,状态码 {{exitCode}}",
|
||||
|
|
|
|||
1
webview-ui/src/i18n/locales/zh-TW/chat.json
generated
1
webview-ui/src/i18n/locales/zh-TW/chat.json
generated
|
|
@ -250,6 +250,7 @@
|
|||
"commandExecution": {
|
||||
"abort": "中止",
|
||||
"running": "執行中",
|
||||
"executed": "已執行",
|
||||
"pid": "PID: {{pid}}",
|
||||
"exitStatus": "已結束,狀態碼 {{exitCode}}",
|
||||
"manageCommands": "自動核准的命令",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue