Skip to content

Commit

Permalink
fix: wrong message
Browse files Browse the repository at this point in the history
  • Loading branch information
crazywoola committed Dec 19, 2024
1 parent d057067 commit 05d73d9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
14 changes: 11 additions & 3 deletions web/app/components/tools/add-tool-modal/empty.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
'use client'
import { useSearchParams } from 'next/navigation'
import { useTranslation } from 'react-i18next'

const Empty = () => {
const { t } = useTranslation()
const searchParams = useSearchParams()

return (
<div className='flex flex-col items-center'>
<div className="shrink-0 w-[163px] h-[149px] bg-cover bg-no-repeat bg-[url('~@/app/components/tools/add-tool-modal/empty.png')]"></div>
<div className='mb-1 text-[13px] font-medium text-text-primary leading-[18px]'>{t('tools.addToolModal.emptyTitle')}</div>
<div className='text-[13px] text-text-tertiary leading-[18px]'>{t('tools.addToolModal.emptyTip')}</div>
{searchParams.get('category') === 'workflow' && <>
<div className='mb-1 text-[13px] font-medium text-text-primary leading-[18px]'>{t('tools.addToolModal.emptyTitle')}</div>
<div className='text-[13px] text-text-tertiary leading-[18px]'>{t('tools.addToolModal.emptyTip')}</div>
</>}
{searchParams.get('category') !== 'workflow' && <>
<div className='mb-1 text-[13px] font-medium text-text-primary leading-[18px]'>{t('tools.addToolModal.emptyTitleCustom')}</div>
<div className='text-[13px] text-text-tertiary leading-[18px]'>{t('tools.addToolModal.emptyTipCustom')}</div>
</>}
</div>
)
}
Expand Down
2 changes: 2 additions & 0 deletions web/i18n/en-US/tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ const translation = {
manageInTools: 'Manage in Tools',
emptyTitle: 'No workflow tool available',
emptyTip: 'Go to "Workflow -> Publish as Tool"',
emptyTitleCustom: 'No custom tool available',
emptyTipCustom: 'Create a custom tool',
},
createTool: {
title: 'Create Custom Tool',
Expand Down
2 changes: 2 additions & 0 deletions web/i18n/zh-Hans/tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ const translation = {
manageInTools: '去工具列表管理',
emptyTitle: '没有可用的工作流工具',
emptyTip: '去 “工作流 -> 发布为工具” 添加',
emptyTitleCustom: '没有可用的自定义工具',
emptyTipCustom: '创建自定义工具',
},
createTool: {
title: '创建自定义工具',
Expand Down

0 comments on commit 05d73d9

Please # to comment.