This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new e90383d4a62 Use appropriate namespace in translation key. (#52933)
e90383d4a62 is described below

commit e90383d4a62f2a00c6d543d89e43103e072c59c2
Author: Karthikeyan Singaravelan <[email protected]>
AuthorDate: Sun Jul 6 19:02:25 2025 +0530

    Use appropriate namespace in translation key. (#52933)
---
 .../src/airflow/ui/src/components/TriggerDag/TriggerDAGForm.tsx         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/airflow-core/src/airflow/ui/src/components/TriggerDag/TriggerDAGForm.tsx 
b/airflow-core/src/airflow/ui/src/components/TriggerDag/TriggerDAGForm.tsx
index 9abc7bffe0c..16f21590cf1 100644
--- a/airflow-core/src/airflow/ui/src/components/TriggerDag/TriggerDAGForm.tsx
+++ b/airflow-core/src/airflow/ui/src/components/TriggerDag/TriggerDAGForm.tsx
@@ -157,7 +157,7 @@ const TriggerDAGForm = ({ dagDisplayName, dagId, isPaused, 
onClose, open }: Trig
           onChange={() => setUnpause(!unpause)}
           wordBreak="break-all"
         >
-          {translate("triggerDag.unpause", { dagDisplayName })}
+          {translate("components:triggerDag.unpause", { dagDisplayName })}
         </Checkbox>
       ) : undefined}
       <ErrorAlert error={errors.date ?? errorTrigger} />

Reply via email to