mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00
fix: fix i18n (#2516)
This commit is contained in:
@@ -9,14 +9,16 @@
|
|||||||
"convert_success": "兑换成功",
|
"convert_success": "兑换成功",
|
||||||
"not_need_invoice": "余额支付,无法开票",
|
"not_need_invoice": "余额支付,无法开票",
|
||||||
"price": "价格",
|
"price": "价格",
|
||||||
"renew_plan": "续费套餐",
|
|
||||||
"standard_valid_tip": "套餐使用规则:系统优先使用更高级的套餐,原未用完的套餐将延后生效",
|
"standard_valid_tip": "套餐使用规则:系统优先使用更高级的套餐,原未用完的套餐将延后生效",
|
||||||
"token_expire_1year": "积分有效期一年",
|
"token_expire_1year": "积分有效期一年",
|
||||||
"tokens": "积分",
|
"tokens": "积分",
|
||||||
"use_balance": "使用余额",
|
"use_balance": "使用余额",
|
||||||
"use_balance_hint": "由于系统升级,原“自动续费从余额扣款”模式取消,余额充值入口关闭。您的余额可用于购买积分",
|
"use_balance_hint": "由于系统升级,原“自动续费从余额扣款”模式取消,余额充值入口关闭。您的余额可用于购买积分",
|
||||||
"valid_time": "生效时间",
|
"valid_time": "生效时间",
|
||||||
"you_can_convert": "您可兑换"
|
"you_can_convert": "您可兑换",
|
||||||
|
"renew_plan": "续费套餐",
|
||||||
|
"current_token_price": "当前积分价格",
|
||||||
|
"yuan": "元"
|
||||||
},
|
},
|
||||||
"bind_inform_account_error": "绑定通知账号异常",
|
"bind_inform_account_error": "绑定通知账号异常",
|
||||||
"bind_inform_account_success": "绑定通知账号成功",
|
"bind_inform_account_success": "绑定通知账号成功",
|
||||||
|
@@ -53,10 +53,10 @@ const ConversionModal = ({
|
|||||||
</HStack>
|
</HStack>
|
||||||
<VStack mt={6}>
|
<VStack mt={6}>
|
||||||
<Box fontSize={'sm'} color="myGray.600" fontWeight="500">
|
<Box fontSize={'sm'} color="myGray.600" fontWeight="500">
|
||||||
当前积分价格
|
{t('user:bill.current_token_price')}
|
||||||
</Box>
|
</Box>
|
||||||
<Box fontSize={'xl'} fontWeight={'700'} color="myGray.900">
|
<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>
|
</Box>
|
||||||
</VStack>
|
</VStack>
|
||||||
<VStack mt={6}>
|
<VStack mt={6}>
|
||||||
|
@@ -303,7 +303,8 @@ const MyInfo = ({ onOpenContact }: { onOpenContact: () => void }) => {
|
|||||||
<Flex alignItems={'center'}>
|
<Flex alignItems={'center'}>
|
||||||
<Box {...labelStyles}>{t('common:user.team.Balance')}: </Box>
|
<Box {...labelStyles}>{t('common:user.team.Balance')}: </Box>
|
||||||
<Box flex={1}>
|
<Box flex={1}>
|
||||||
<strong>{formatStorePrice2Read(userInfo?.team?.balance).toFixed(3)}</strong> 元
|
<strong>{formatStorePrice2Read(userInfo?.team?.balance).toFixed(3)}</strong>{' '}
|
||||||
|
{t('user:bill.yuan')}
|
||||||
</Box>
|
</Box>
|
||||||
{/* TODO:暂时隐藏 */}
|
{/* TODO:暂时隐藏 */}
|
||||||
{userInfo?.permission.hasManagePer && !!standardPlan && (
|
{userInfo?.permission.hasManagePer && !!standardPlan && (
|
||||||
|
Reference in New Issue
Block a user