Commit 884c2d95 by papapatrick Committed by GitHub

fix: i18n display (#2429)

parent 918d7fb2
......@@ -47,7 +47,7 @@ const StandardPlanContentList = ({
<Flex alignItems={'center'}>
<MyIcon name={'price/right'} w={'16px'} mr={3} />
<Box color={'myGray.600'}>
{t('support.wallet.subscription.function.Max members', {
{t('common:support.wallet.subscription.function.Max members', {
amount: planContent.maxTeamMember
})}
</Box>
......@@ -55,7 +55,7 @@ const StandardPlanContentList = ({
<Flex alignItems={'center'}>
<MyIcon name={'price/right'} w={'16px'} mr={3} />
<Box color={'myGray.600'}>
{t('support.wallet.subscription.function.Max app', {
{t('common:support.wallet.subscription.function.Max app', {
amount: planContent.maxAppAmount
})}
</Box>
......@@ -63,7 +63,7 @@ const StandardPlanContentList = ({
<Flex alignItems={'center'}>
<MyIcon name={'price/right'} w={'16px'} mr={3} />
<Box color={'myGray.600'}>
{t('support.wallet.subscription.function.Max dataset', {
{t('common:support.wallet.subscription.function.Max dataset', {
amount: planContent.maxDatasetAmount
})}
</Box>
......@@ -71,7 +71,7 @@ const StandardPlanContentList = ({
<Flex alignItems={'center'}>
<MyIcon name={'price/right'} w={'16px'} mr={3} />
<Box color={'myGray.600'}>
{t('support.wallet.subscription.function.History store', {
{t('common:support.wallet.subscription.function.History store', {
amount: planContent.chatHistoryStoreDuration
})}
</Box>
......@@ -79,7 +79,7 @@ const StandardPlanContentList = ({
<Flex alignItems={'center'}>
<MyIcon name={'price/right'} w={'16px'} mr={3} />
<Box fontWeight={'bold'}>
{t('support.wallet.subscription.function.Max dataset size', {
{t('common:support.wallet.subscription.function.Max dataset size', {
amount: planContent.maxDatasetSize
})}
</Box>
......@@ -88,7 +88,7 @@ const StandardPlanContentList = ({
<MyIcon name={'price/right'} w={'16px'} mr={3} />
<Flex alignItems={'center'}>
<Box fontWeight={'bold'}>
{t('support.wallet.subscription.function.Points', {
{t('common:support.wallet.subscription.function.Points', {
amount: planContent.totalPoints
})}
</Box>
......@@ -104,7 +104,7 @@ const StandardPlanContentList = ({
<Flex alignItems={'center'}>
<MyIcon name={'price/right'} w={'16px'} mr={3} />
<Box color={'myGray.600'}>
{t('support.wallet.subscription.Training weight', {
{t('common:support.wallet.subscription.Training weight', {
weight: planContent.trainingWeight
})}
</Box>
......@@ -112,13 +112,13 @@ const StandardPlanContentList = ({
{!!planContent.permissionReRank && (
<Flex alignItems={'center'}>
<MyIcon name={'price/right'} w={'16px'} mr={3} />
<Box color={'myGray.600'}>{t('support.wallet.subscription.rerank')}</Box>
<Box color={'myGray.600'}>{t('common:support.wallet.subscription.rerank')}</Box>
</Flex>
)}
{!!planContent.permissionWebsiteSync && (
<Flex alignItems={'center'}>
<MyIcon name={'price/right'} w={'16px'} mr={3} />
<Box color={'myGray.600'}>{t('support.wallet.subscription.web_site_sync')}</Box>
<Box color={'myGray.600'}>{t('common:support.wallet.subscription.web_site_sync')}</Box>
</Flex>
)}
</Grid>
......
......@@ -52,7 +52,7 @@ const ChatHeader = ({
{isPc ? (
<>
<PcHeader
title={chatData.title || t('chat:new_chat')}
title={chatData.title || t('common:core.chat.New Chat')}
chatModels={chatData.app.chatModels}
history={history}
/>
......
......@@ -241,7 +241,7 @@ const Dataset = () => {
export async function getServerSideProps(content: any) {
return {
props: {
...(await serviceSideProps(content, ['dataset']))
...(await serviceSideProps(content, ['dataset', 'user']))
}
};
}
......
......@@ -101,7 +101,7 @@ const Standard = ({
{t('common:support.wallet.subscription.Sub plan')}
</Box>
<Box mt={8} mb={10} color={'myGray.500'} fontSize={'md'}>
{t('support.wallet.subscription.Sub plan tip', {
{t('common:support.wallet.subscription.Sub plan tip', {
title: feConfigs?.systemTitle
})}
</Box>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment