mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-04 13:50:40 +08:00
feat: nodata i18n
This commit is contained in:
parent
512b6e4b14
commit
1593ef0640
@ -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>
|
||||
)
|
||||
|
@ -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',
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
|
@ -911,6 +911,10 @@ const translation = {
|
||||
debug: {
|
||||
settingsTab: '设置',
|
||||
lastRunTab: '上次运行',
|
||||
noData: {
|
||||
description: '上次运行的结果将显示在这里',
|
||||
runThisNode: '运行此节点',
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user