diff --git a/public/locales/de.json b/public/locales/de.json
index 363aebbf..5c5c1acc 100644
--- a/public/locales/de.json
+++ b/public/locales/de.json
@@ -513,7 +513,8 @@
"running": "Läuft",
"scheduled": "Geplant",
"queued": "In Warteschlange",
- "failed": "Fehlgeschlagen"
+ "failed": "Fehlgeschlagen",
+ "aborted": "Abgebrochen"
},
"run_settings_modal": {
"title": "Ausführungseinstellungen",
diff --git a/public/locales/en.json b/public/locales/en.json
index 53ac4184..03ee61cb 100644
--- a/public/locales/en.json
+++ b/public/locales/en.json
@@ -521,7 +521,8 @@
"running": "Running",
"scheduled": "Scheduled",
"queued": "Queued",
- "failed": "Failed"
+ "failed": "Failed",
+ "aborted": "Aborted"
},
"run_settings_modal": {
"title": "Run Settings",
diff --git a/public/locales/es.json b/public/locales/es.json
index 14db7b5d..0abb10a0 100644
--- a/public/locales/es.json
+++ b/public/locales/es.json
@@ -514,7 +514,8 @@
"running": "Ejecutando",
"scheduled": "Programado",
"queued": "En cola",
- "failed": "Fallido"
+ "failed": "Fallido",
+ "aborted": "Abortado"
},
"run_settings_modal": {
"title": "Configuración de Ejecución",
diff --git a/public/locales/ja.json b/public/locales/ja.json
index 54f7e788..58219ceb 100644
--- a/public/locales/ja.json
+++ b/public/locales/ja.json
@@ -514,7 +514,8 @@
"running": "実行中",
"scheduled": "スケジュール済み",
"queued": "キューに入れました",
- "failed": "失敗"
+ "failed": "失敗",
+ "aborted": "中止されました"
},
"run_settings_modal": {
"title": "実行設定",
diff --git a/public/locales/zh.json b/public/locales/zh.json
index cc23556e..71f98c07 100644
--- a/public/locales/zh.json
+++ b/public/locales/zh.json
@@ -514,7 +514,8 @@
"running": "运行中",
"scheduled": "已计划",
"queued": "排队",
- "failed": "失败"
+ "failed": "失败",
+ "aborted": "已中止"
},
"run_settings_modal": {
"title": "运行设置",
diff --git a/src/components/run/ColapsibleRow.tsx b/src/components/run/ColapsibleRow.tsx
index 4d5fe822..eadf0823 100644
--- a/src/components/run/ColapsibleRow.tsx
+++ b/src/components/run/ColapsibleRow.tsx
@@ -125,6 +125,7 @@ export const CollapsibleRow = ({ row, handleDelete, isOpen, currentLog, abortRun
{row.status === 'scheduled' && }
{row.status === 'queued' && }
{row.status === 'failed' && }
+ {row.status === 'aborted' && }
)
case 'delete':