mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-28 17:29:44 +00:00
fix: fix i18n (#2516)
This commit is contained in:
@@ -53,10 +53,10 @@ const ConversionModal = ({
|
||||
</HStack>
|
||||
<VStack mt={6}>
|
||||
<Box fontSize={'sm'} color="myGray.600" fontWeight="500">
|
||||
当前积分价格
|
||||
{t('user:bill.current_token_price')}
|
||||
</Box>
|
||||
<Box fontSize={'xl'} fontWeight={'700'} color="myGray.900">
|
||||
¥15/1000 {t('user:bill.tokens')}/月
|
||||
¥15/1000 {t('user:bill.tokens')}/{t('common:common.month')}
|
||||
</Box>
|
||||
</VStack>
|
||||
<VStack mt={6}>
|
||||
|
@@ -303,7 +303,8 @@ const MyInfo = ({ onOpenContact }: { onOpenContact: () => void }) => {
|
||||
<Flex alignItems={'center'}>
|
||||
<Box {...labelStyles}>{t('common:user.team.Balance')}: </Box>
|
||||
<Box flex={1}>
|
||||
<strong>{formatStorePrice2Read(userInfo?.team?.balance).toFixed(3)}</strong> 元
|
||||
<strong>{formatStorePrice2Read(userInfo?.team?.balance).toFixed(3)}</strong>{' '}
|
||||
{t('user:bill.yuan')}
|
||||
</Box>
|
||||
{/* TODO:暂时隐藏 */}
|
||||
{userInfo?.permission.hasManagePer && !!standardPlan && (
|
||||
|
Reference in New Issue
Block a user