+
{t('explore.sidebar.workspace')}
+
{list.map(({id, name}) => {
return (
diff --git a/web/i18n/i18next-config.ts b/web/i18n/i18next-config.ts
index 49d729e7c7..7da90a10c3 100644
--- a/web/i18n/i18next-config.ts
+++ b/web/i18n/i18next-config.ts
@@ -31,6 +31,8 @@ import datasetSettingsEn from './lang/dataset-settings.en'
import datasetSettingsZh from './lang/dataset-settings.zh'
import datasetCreationEn from './lang/dataset-creation.en'
import datasetCreationZh from './lang/dataset-creation.zh'
+import exploreEn from './lang/explore.en'
+import exploreZh from './lang/explore.zh'
import { getLocaleOnClient } from '@/i18n/client'
const resources = {
@@ -53,6 +55,7 @@ const resources = {
datasetHitTesting: datasetHitTestingEn,
datasetSettings: datasetSettingsEn,
datasetCreation: datasetCreationEn,
+ explore: exploreEn,
},
},
'zh-Hans': {
@@ -74,6 +77,7 @@ const resources = {
datasetHitTesting: datasetHitTestingZh,
datasetSettings: datasetSettingsZh,
datasetCreation: datasetCreationZh,
+ explore: exploreZh,
},
},
}
diff --git a/web/i18n/lang/explore.en.ts b/web/i18n/lang/explore.en.ts
new file mode 100644
index 0000000000..7a2ec27335
--- /dev/null
+++ b/web/i18n/lang/explore.en.ts
@@ -0,0 +1,13 @@
+const translation = {
+ sidebar: {
+ discovery: 'Discovery',
+ workspace: 'Workspace',
+ },
+ apps: {
+ title: 'Explore Apps by Dify',
+ description: 'Use these template apps instantly or customize your own apps based on the templates.',
+ allCategories: 'All Categories',
+ }
+}
+
+export default translation
diff --git a/web/i18n/lang/explore.zh.ts b/web/i18n/lang/explore.zh.ts
new file mode 100644
index 0000000000..a3e44b1ce3
--- /dev/null
+++ b/web/i18n/lang/explore.zh.ts
@@ -0,0 +1,13 @@
+const translation = {
+ sidebar: {
+ discovery: '发现',
+ workspace: '工作区',
+ },
+ apps: {
+ title: '探索 Dify 的应用',
+ description: '使用这些模板应用程序,或根据模板自定义您自己的应用程序。',
+ allCategories: '所有类别',
+ }
+}
+
+export default translation