- {t('tools.noCustomTool.title')}
+ {t('tools.noCustomTool.title')}
{t('tools.noCustomTool.content')}
diff --git a/web/app/components/tools/no-custom-tool-placeholder.tsx b/web/app/components/tools/no-custom-tool-placeholder.tsx
new file mode 100644
index 0000000000..7fda72140c
--- /dev/null
+++ b/web/app/components/tools/no-custom-tool-placeholder.tsx
@@ -0,0 +1,26 @@
+'use client'
+import type { FC } from 'react'
+import React from 'react'
+import { useTranslation } from 'react-i18next'
+import { BookOpen01 } from '../base/icons/src/vender/line/education'
+import { Icon3Dots } from '../base/icons/src/public/other'
+
+const NoCustomToolPlaceHolder: FC = () => {
+ const { t } = useTranslation()
+
+ return (
+
+
+
+
+
+
+ {t('tools.noCustomTool.title')}
+
+
+
{t('tools.noCustomTool.content')}
+
+
+ )
+}
+export default React.memo(NoCustomToolPlaceHolder)
diff --git a/web/i18n/lang/tools.en.ts b/web/i18n/lang/tools.en.ts
index ce9c17f04d..7b8314f188 100644
--- a/web/i18n/lang/tools.en.ts
+++ b/web/i18n/lang/tools.en.ts
@@ -86,7 +86,7 @@ const translation = {
infoAndSetting: 'Info & Settings',
},
noCustomTool: {
- title: 'No custom tools',
+ title: 'No custom tools!',
content: 'Add and manage your custom tools here for building AI apps.',
createTool: 'Create Tool',
},
diff --git a/web/i18n/lang/tools.pt.ts b/web/i18n/lang/tools.pt.ts
index a46bbb961c..99892ce780 100644
--- a/web/i18n/lang/tools.pt.ts
+++ b/web/i18n/lang/tools.pt.ts
@@ -86,7 +86,7 @@ const translation = {
infoAndSetting: 'Informações e Configurações',
},
noCustomTool: {
- title: 'Nenhuma ferramenta personalizada',
+ title: 'Nenhuma ferramenta personalizada!',
content: 'Você não possui ferramentas personalizadas. ',
createTool: 'Criar Ferramenta',
},
diff --git a/web/i18n/lang/tools.zh.ts b/web/i18n/lang/tools.zh.ts
index 2fa5183171..40753ddc9b 100644
--- a/web/i18n/lang/tools.zh.ts
+++ b/web/i18n/lang/tools.zh.ts
@@ -78,7 +78,7 @@ const translation = {
infoAndSetting: '信息和设置',
},
noCustomTool: {
- title: '没有自定义工具',
+ title: '没有自定义工具!',
content: '在此统一添加和管理你的自定义工具,方便构建应用时使用。',
createTool: '创建工具',
},