diff --git a/web/app/components/plugins/marketplace/description/index.tsx b/web/app/components/plugins/marketplace/description/index.tsx index d1be3c9806..8cab8373f3 100644 --- a/web/app/components/plugins/marketplace/description/index.tsx +++ b/web/app/components/plugins/marketplace/description/index.tsx @@ -11,6 +11,7 @@ const Description = async ({ }: DescriptionProps) => { const localeDefault = getLocaleOnServer() const { t } = await translate(localeFromProps || localeDefault, 'plugin') + const { t: tCommon } = await translate(localeFromProps || localeDefault, 'common') return ( <> @@ -34,7 +35,8 @@ const Description = async ({ {t('category.bundles')} - {t('marketplace.inDifyMarketplace')} + {tCommon('operation.in')} + {t('marketplace.difyMarketplace')} )