mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-18 19:15:55 +08:00
Fix/plugin badge i18n (#14319)
This commit is contained in:
parent
b44b3866a1
commit
8c08153e33
@ -1,5 +1,4 @@
|
|||||||
import type { FC } from 'react'
|
import type { FC } from 'react'
|
||||||
import { useTranslation } from 'react-i18next'
|
|
||||||
import IconWithTooltip from './icon-with-tooltip'
|
import IconWithTooltip from './icon-with-tooltip'
|
||||||
import PartnerDark from '@/app/components/base/icons/src/public/plugins/PartnerDark'
|
import PartnerDark from '@/app/components/base/icons/src/public/plugins/PartnerDark'
|
||||||
import PartnerLight from '@/app/components/base/icons/src/public/plugins/PartnerLight'
|
import PartnerLight from '@/app/components/base/icons/src/public/plugins/PartnerLight'
|
||||||
@ -7,12 +6,13 @@ import useTheme from '@/hooks/use-theme'
|
|||||||
|
|
||||||
type PartnerProps = {
|
type PartnerProps = {
|
||||||
className?: string
|
className?: string
|
||||||
|
text: string
|
||||||
}
|
}
|
||||||
|
|
||||||
const Partner: FC<PartnerProps> = ({
|
const Partner: FC<PartnerProps> = ({
|
||||||
className,
|
className,
|
||||||
|
text,
|
||||||
}) => {
|
}) => {
|
||||||
const { t } = useTranslation()
|
|
||||||
const { theme } = useTheme()
|
const { theme } = useTheme()
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@ -21,7 +21,7 @@ const Partner: FC<PartnerProps> = ({
|
|||||||
theme={theme}
|
theme={theme}
|
||||||
BadgeIconLight={PartnerLight}
|
BadgeIconLight={PartnerLight}
|
||||||
BadgeIconDark={PartnerDark}
|
BadgeIconDark={PartnerDark}
|
||||||
popupContent={t('plugin.marketplace.partnerTip')}
|
popupContent={text}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import type { FC } from 'react'
|
import type { FC } from 'react'
|
||||||
import { useTranslation } from 'react-i18next'
|
|
||||||
import IconWithTooltip from './icon-with-tooltip'
|
import IconWithTooltip from './icon-with-tooltip'
|
||||||
import VerifiedDark from '@/app/components/base/icons/src/public/plugins/VerifiedDark'
|
import VerifiedDark from '@/app/components/base/icons/src/public/plugins/VerifiedDark'
|
||||||
import VerifiedLight from '@/app/components/base/icons/src/public/plugins/VerifiedLight'
|
import VerifiedLight from '@/app/components/base/icons/src/public/plugins/VerifiedLight'
|
||||||
@ -7,12 +6,13 @@ import useTheme from '@/hooks/use-theme'
|
|||||||
|
|
||||||
type VerifiedProps = {
|
type VerifiedProps = {
|
||||||
className?: string
|
className?: string
|
||||||
|
text: string
|
||||||
}
|
}
|
||||||
|
|
||||||
const Verified: FC<VerifiedProps> = ({
|
const Verified: FC<VerifiedProps> = ({
|
||||||
className,
|
className,
|
||||||
|
text,
|
||||||
}) => {
|
}) => {
|
||||||
const { t } = useTranslation()
|
|
||||||
const { theme } = useTheme()
|
const { theme } = useTheme()
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@ -21,7 +21,7 @@ const Verified: FC<VerifiedProps> = ({
|
|||||||
theme={theme}
|
theme={theme}
|
||||||
BadgeIconLight={VerifiedLight}
|
BadgeIconLight={VerifiedLight}
|
||||||
BadgeIconDark={VerifiedDark}
|
BadgeIconDark={VerifiedDark}
|
||||||
popupContent={t('plugin.marketplace.verifiedTip')}
|
popupContent={text}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -73,8 +73,8 @@ const Card = ({
|
|||||||
<div className="ml-3 w-0 grow">
|
<div className="ml-3 w-0 grow">
|
||||||
<div className="flex items-center h-5">
|
<div className="flex items-center h-5">
|
||||||
<Title title={getLocalizedText(label)} />
|
<Title title={getLocalizedText(label)} />
|
||||||
{isPartner && <Partner className='w-4 h-4 ml-0.5' />}
|
{isPartner && <Partner className='w-4 h-4 ml-0.5' text={t('plugin.marketplace.partnerTip')} />}
|
||||||
{verified && <Verified className='w-4 h-4 ml-0.5' />}
|
{verified && <Verified className='w-4 h-4 ml-0.5' text={t('plugin.marketplace.verifiedTip')} />}
|
||||||
{titleLeft} {/* This can be version badge */}
|
{titleLeft} {/* This can be version badge */}
|
||||||
</div>
|
</div>
|
||||||
<OrgInfo
|
<OrgInfo
|
||||||
|
Loading…
x
Reference in New Issue
Block a user