This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v3-1-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 12ced9acdefd03fd3be76df3e33ae6732924fea8 Author: LI,JHE-CHEN <[email protected]> AuthorDate: Tue Nov 25 15:13:02 2025 -0500 Add missing Dag run table translation (#58572) * fix: Fix missing state translation in Dag Runs table * fix: add missing run type translation (cherry picked from commit dc6f19ff0d6f2b751379262896509274a8c0cd5d) --- airflow-core/src/airflow/ui/src/pages/DagRuns.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airflow-core/src/airflow/ui/src/pages/DagRuns.tsx b/airflow-core/src/airflow/ui/src/pages/DagRuns.tsx index c0487ab49c7..1af0ffe1afb 100644 --- a/airflow-core/src/airflow/ui/src/pages/DagRuns.tsx +++ b/airflow-core/src/airflow/ui/src/pages/DagRuns.tsx @@ -101,7 +101,7 @@ const runColumns = (translate: TFunction, dagId?: string): Array<ColumnDef<DAGRu row: { original: { state }, }, - }) => <StateBadge state={state}>{state}</StateBadge>, + }) => <StateBadge state={state}>{translate(`common:states.${state}`)}</StateBadge>, header: () => translate("state"), }, { @@ -109,7 +109,7 @@ const runColumns = (translate: TFunction, dagId?: string): Array<ColumnDef<DAGRu cell: ({ row: { original } }) => ( <HStack> <RunTypeIcon runType={original.run_type} /> - <Text>{original.run_type}</Text> + <Text>{translate(`common:runTypes.${original.run_type}`)}</Text> </HStack> ), enableSorting: false,
