diff --git a/web/app/components/plugins/marketplace/home/__tests__/home-header.spec.tsx b/web/app/components/plugins/marketplace/home/__tests__/home-header.spec.tsx
index 610d2af72ce..2fd6a203f47 100644
--- a/web/app/components/plugins/marketplace/home/__tests__/home-header.spec.tsx
+++ b/web/app/components/plugins/marketplace/home/__tests__/home-header.spec.tsx
@@ -36,7 +36,7 @@ describe('HomeHeader', () => {
expect(darkLogo).toHaveAttribute('height', '16.386')
expect(screen.queryByText('mainNav.marketplace')).not.toBeInTheDocument()
- const guideLink = screen.getByRole('link', { name: 'Guide' })
+ const guideLink = screen.getByRole('link', { name: 'marketplace.home.guide' })
expect(guideLink).toHaveAttribute('href', 'https://docs.dify.ai/en/home')
expect(guideLink).toHaveAttribute('target', '_blank')
expect(guideLink).toHaveAttribute('rel', 'noopener noreferrer')
diff --git a/web/app/components/plugins/marketplace/home/home-header.tsx b/web/app/components/plugins/marketplace/home/home-header.tsx
index e465a738750..407fd59bd10 100644
--- a/web/app/components/plugins/marketplace/home/home-header.tsx
+++ b/web/app/components/plugins/marketplace/home/home-header.tsx
@@ -1,6 +1,7 @@
import type { HomeCatalogTab } from './home-catalog-tabs'
import { Button } from '@langgenius/dify-ui/button'
import { cn } from '@langgenius/dify-ui/cn'
+import { useTranslation } from '#i18n'
import { useDocLink } from '@/context/i18n'
import Link from '@/next/link'
import MarketplaceLogoDark from '@/public/marketplace/dify-marketplace-logo-dark.svg'
@@ -17,12 +18,13 @@ type HomeHeaderProps = {
function Guide() {
const docLink = useDocLink()
+ const { t } = useTranslation('plugin')
return (
-