Feat: Move the pipeline translation field to flow #9869 (#10697)

### What problem does this PR solve?

Feat: Move the pipeline translation field to flow #9869

### Type of change


- [X] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-10-21 15:23:37 +08:00
committed by GitHub
parent 41a647fe32
commit 544c9990e3
18 changed files with 234 additions and 250 deletions

View File

@ -77,7 +77,7 @@ export function PipelineLogSheet({
uploadedFileData?.extension,
})}
>
{t('dataflow.viewResult')} <ArrowUpRight />
{t('flow.viewResult')} <ArrowUpRight />
</Button>
)}
</SheetTitle>
@ -95,7 +95,7 @@ export function PipelineLogSheet({
className="w-full mt-8 bg-state-error/10 text-state-error hover:bg-state-error hover:text-bg-base"
onClick={handleCancel}
>
<CirclePause /> {t('dataflow.cancel')}
<CirclePause /> {t('flow.cancel')}
</Button>
) : (
<Button
@ -104,7 +104,7 @@ export function PipelineLogSheet({
className="w-full mt-8 bg-accent-primary-5 text-text-secondary hover:bg-accent-primary-5 hover:text-accent-primary hover:border-accent-primary hover:border"
>
<SquareArrowOutUpRight />
{t('dataflow.exportJson')}
{t('flow.exportJson')}
</Button>
)}
</div>