feat: nodata i18n

This commit is contained in:
Joel 2025-04-23 15:16:18 +08:00
parent 512b6e4b14
commit 1593ef0640
3 changed files with 12 additions and 2 deletions

View File

@ -4,6 +4,7 @@ import React from 'react'
import { ClockPlay } from '@/app/components/base/icons/src/vender/line/time'
import Button from '@/app/components/base/button'
import { RiPlayLine } from '@remixicon/react'
import { useTranslation } from 'react-i18next'
type Props = {
onSingleRun: () => void
@ -12,17 +13,18 @@ type Props = {
const NoData: FC<Props> = ({
onSingleRun,
}) => {
const { t } = useTranslation()
return (
<div className='flex h-0 grow flex-col items-center justify-center'>
<ClockPlay className='h-8 w-8 text-text-quaternary' />
<div className='system-xs-regular my-2 text-text-tertiary'>The results of the last run will be displayed here</div>
<div className='system-xs-regular my-2 text-text-tertiary'>{t('workflow.debug.noData.description')}</div>
<Button
className='flex'
size='small'
onClick={onSingleRun}
>
<RiPlayLine className='mr-1 h-3.5 w-3.5' />
<div>Run this node</div>
<div>{t('workflow.debug.noData.runThisNode')}</div>
</Button>
</div>
)

View File

@ -910,6 +910,10 @@ const translation = {
debug: {
settingsTab: 'Settings',
lastRunTab: 'Last Run',
noData: {
description: 'The results of the last run will be displayed here',
runThisNode: 'Run this node',
},
},
}

View File

@ -911,6 +911,10 @@ const translation = {
debug: {
settingsTab: '设置',
lastRunTab: '上次运行',
noData: {
description: '上次运行的结果将显示在这里',
runThisNode: '运行此节点',
},
},
}