mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-29 09:44:47 +00:00
fix: i18n display (#2429)
This commit is contained in:
@@ -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>
|
||||
|
Reference in New Issue
Block a user