= ({ appItems, curApp, userProfile, onLogout, lan
const { datasets, currentDataset } = useDatasetsContext()
const router = useRouter()
const showEnvTag = langeniusVersionInfo.current_env === 'TESTING' || langeniusVersionInfo.current_env === 'DEVELOPMENT'
- const isPluginsComingSoon = useSelectedLayoutSegment() === 'plugins-coming-soon'
-
+ const selectedSegment = useSelectedLayoutSegment()
+ const isPluginsComingSoon = selectedSegment === 'plugins-coming-soon'
+ const isExplore = selectedSegment === 'explore'
return (
= ({ appItems, curApp, userProfile, onLogout, lan
+
+
+ {t('common.menus.explore')}
+
}
+ icon={}
text={t('common.menus.apps')}
activeSegment={['apps', 'app']}
link='/apps'
diff --git a/web/i18n/lang/common.en.ts b/web/i18n/lang/common.en.ts
index 6771cbc42c..0f2921127d 100644
--- a/web/i18n/lang/common.en.ts
+++ b/web/i18n/lang/common.en.ts
@@ -60,7 +60,8 @@ const translation = {
},
menus: {
status: 'beta',
- apps: 'Apps',
+ explore: 'Explore',
+ apps: 'Build Apps',
plugins: 'Plugins',
pluginsTips: 'Integrate third-party plugins or create ChatGPT-compatible AI-Plugins.',
datasets: 'Datasets',
diff --git a/web/i18n/lang/common.zh.ts b/web/i18n/lang/common.zh.ts
index a2f03a1bc1..f1a32feede 100644
--- a/web/i18n/lang/common.zh.ts
+++ b/web/i18n/lang/common.zh.ts
@@ -60,7 +60,8 @@ const translation = {
},
menus: {
status: 'beta',
- apps: '应用',
+ explore: '探索',
+ apps: '构建应用',
plugins: '插件',
pluginsTips: '集成第三方插件或创建与 ChatGPT 兼容的 AI 插件。',
datasets: '数据集',