fix i18next.d.ts (#2064)

* fix i18next.d.ts

* feat: packages web i18n

* delete file
This commit is contained in:
jingyang
2024-07-17 15:27:51 +08:00
committed by GitHub
parent 36f8755d09
commit 982325d066
75 changed files with 216 additions and 204 deletions

View File

@@ -45,7 +45,7 @@ const BillTable = () => {
[
{ label: t('common:common.All'), value: '' },
...Object.entries(billTypeMap).map(([key, value]) => ({
label: t(value.label),
label: t(value.label as any),
value: key
}))
] as {
@@ -130,12 +130,12 @@ const BillTable = () => {
{bills.map((item, i) => (
<Tr key={item._id}>
<Td>{i + 1}</Td>
<Td>{t(billTypeMap[item.type]?.label)}</Td>
<Td>{t(billTypeMap[item.type]?.label as any)}</Td>
<Td>
{item.createTime ? dayjs(item.createTime).format('YYYY/MM/DD HH:mm:ss') : '-'}
</Td>
<Td>{formatStorePrice2Read(item.price)}</Td>
<Td>{t(billStatusMap[item.status]?.label)}</Td>
<Td>{t(billStatusMap[item.status]?.label as any)}</Td>
<Td>
{item.status === 'NOTPAY' && (
<Button mr={4} onClick={() => handleRefreshPayOrder(item._id)} size={'sm'}>
@@ -201,12 +201,12 @@ function BillDetailModal({ bill, onClose }: { bill: BillSchemaType; onClose: ()
</Flex>
<Flex alignItems={'center'} pb={4}>
<FormLabel flex={'0 0 120px'}>{t('common:support.wallet.bill.Status')}:</FormLabel>
<Box>{t(billStatusMap[bill.status]?.label)}</Box>
<Box>{t(billStatusMap[bill.status]?.label as any)}</Box>
</Flex>
{!!bill.metadata?.payWay && (
<Flex alignItems={'center'} pb={4}>
<FormLabel flex={'0 0 120px'}>{t('common:support.wallet.bill.payWay.Way')}:</FormLabel>
<Box>{t(billPayWayMap[bill.metadata.payWay]?.label)}</Box>
<Box>{t(billPayWayMap[bill.metadata.payWay]?.label as any)}</Box>
</Flex>
)}
<Flex alignItems={'center'} pb={4}>
@@ -215,14 +215,14 @@ function BillDetailModal({ bill, onClose }: { bill: BillSchemaType; onClose: ()
</Flex>
<Flex alignItems={'center'} pb={4}>
<FormLabel flex={'0 0 120px'}>{t('common:support.wallet.bill.Type')}:</FormLabel>
<Box>{t(billTypeMap[bill.type]?.label)}</Box>
<Box>{t(billTypeMap[bill.type]?.label as any)}</Box>
</Flex>
{!!bill.metadata?.subMode && (
<Flex alignItems={'center'} pb={4}>
<FormLabel flex={'0 0 120px'}>
{t('common:support.wallet.subscription.mode.Period')}:
</FormLabel>
<Box>{t(subModeMap[bill.metadata.subMode]?.label)}</Box>
<Box>{t(subModeMap[bill.metadata.subMode]?.label as any)}</Box>
</Flex>
)}
{!!bill.metadata?.standSubLevel && (
@@ -230,7 +230,7 @@ function BillDetailModal({ bill, onClose }: { bill: BillSchemaType; onClose: ()
<FormLabel flex={'0 0 120px'}>
{t('common:support.wallet.subscription.Stand plan level')}:
</FormLabel>
<Box>{t(standardSubLevelMap[bill.metadata.standSubLevel]?.label)}</Box>
<Box>{t(standardSubLevelMap[bill.metadata.standSubLevel]?.label as any)}</Box>
</Flex>
)}
{bill.metadata?.month !== undefined && (

View File

@@ -404,7 +404,7 @@ const PlanUsage = () => {
{t('common:support.wallet.subscription.Current plan')}
</Box>
<Box fontWeight={'bold'} fontSize="lg">
{t(planName)}
{t(planName as any)}
</Box>
{isFreeTeam ? (

View File

@@ -77,11 +77,11 @@ const UsageDetail = ({ usage, onClose }: { usage: UsageItemType; onClose: () =>
</Flex>
<Flex alignItems={'center'} pb={4}>
<FormLabel flex={'0 0 80px'}>{t('common:support.wallet.usage.App name')}:</FormLabel>
<Box>{t(usage.appName) || '-'}</Box>
<Box>{t(usage.appName as any) || '-'}</Box>
</Flex>
<Flex alignItems={'center'} pb={4}>
<FormLabel flex={'0 0 80px'}>{t('common:support.wallet.usage.Source')}:</FormLabel>
<Box>{t(UsageSourceMap[usage.source]?.label)}</Box>
<Box>{t(UsageSourceMap[usage.source]?.label as any)}</Box>
</Flex>
<Flex alignItems={'center'} pb={4}>
<FormLabel flex={'0 0 80px'}>{t('common:support.wallet.usage.Total points')}:</FormLabel>
@@ -106,7 +106,7 @@ const UsageDetail = ({ usage, onClose }: { usage: UsageItemType; onClose: () =>
<Tbody>
{filterBillList.map((item, i) => (
<Tr key={i}>
<Td>{t(item.moduleName)}</Td>
<Td>{t(item.moduleName as any)}</Td>
{hasModel && <Td>{item.model ?? '-'}</Td>}
{hasToken && <Td>{item.tokens ?? '-'}</Td>}
{hasCharsLen && <Td>{item.charsLength ?? '-'}</Td>}

View File

@@ -51,7 +51,7 @@ const UsageTable = () => {
[
{ label: t('common:common.All'), value: '' },
...Object.entries(UsageSourceMap).map(([key, value]) => ({
label: t(value.label),
label: t(value.label as any),
value: key
}))
] as {
@@ -169,8 +169,8 @@ const UsageTable = () => {
<Tr key={item.id}>
{/* <Td>{item.memberName}</Td> */}
<Td>{dayjs(item.time).format('YYYY/MM/DD HH:mm:ss')}</Td>
<Td>{t(UsageSourceMap[item.source]?.label) || '-'}</Td>
<Td>{t(item.appName) || '-'}</Td>
<Td>{t(UsageSourceMap[item.source]?.label as any) || '-'}</Td>
<Td>{t(item.appName as any) || '-'}</Td>
<Td>{formatNumber(item.totalPoints) || 0}</Td>
<Td>
<Button size={'sm'} variant={'whitePrimary'} onClick={() => setUsageDetail(item)}>

View File

@@ -73,8 +73,9 @@ const StandDetailModal = ({ onClose }: { onClose: () => void }) => {
w={'20px'}
color={'myGray.800'}
/>
{t(subTypeMap[type]?.label)}
{currentSubLevel && `(${t(standardSubLevelMap[currentSubLevel]?.label)})`}
{t(subTypeMap[type]?.label as any)}
{currentSubLevel &&
`(${t(standardSubLevelMap[currentSubLevel]?.label as any)})`}
</Td>
<Td>{datasetSize ? `${datasetSize}` : '-'}</Td>
<Td>

View File

@@ -126,7 +126,7 @@ const Logs = () => {
onClick={() => setDetailLogsId(item.id)}
>
<Td>
<Box>{t(ChatSourceMap[item.source]?.name || 'UnKnow')}</Box>
<Box>{t(ChatSourceMap[item.source]?.name || ('UnKnow' as any))}</Box>
<Box color={'myGray.500'}>{dayjs(item.time).format('YYYY/MM/DD HH:mm')}</Box>
</Td>
<Td className="textEllipsis" maxW={'250px'}>

View File

@@ -69,7 +69,7 @@ const FeiShuEditModal = ({
placeholder={publishT('Feishu name') || 'Link Name'} // TODO: i18n
maxLength={20}
{...register('name', {
required: t('common:common.Name is empty') || 'Name is empty'
required: t('common:common.name_is_empty') || 'name_is_empty'
})}
/>
</Flex>
@@ -150,7 +150,7 @@ const FeiShuEditModal = ({
<Flex alignItems={'center'} mt={4}>
<Box flex={'0 0 90px'}>{t('common:core.module.http.AppId')}</Box>
<Input
placeholder={t('common:core.module.http.appId') || 'Link Name'}
placeholder={t('common:core.module.http.AppId') || 'Link Name'}
// maxLength={20}
{...register('app.appId', {
required: true
@@ -158,12 +158,12 @@ const FeiShuEditModal = ({
/>
</Flex>
<Flex alignItems={'center'} mt={4}>
<Box flex={'0 0 90px'}>{t('common:core.module.http.AppSecret')}</Box>
<Box flex={'0 0 90px'}>{t('common:core.module.http.AppSecret' as any)}</Box>
<Input
placeholder={'App Secret'}
// maxLength={20}
{...register('app.appSecret', {
required: t('common:common.Name is empty') || 'Name is empty'
required: t('common:common.name_is_empty') || 'name_is_empty'
})}
/>
</Flex>
@@ -173,7 +173,7 @@ const FeiShuEditModal = ({
placeholder="Encrypt Key"
// maxLength={20}
{...register('app.encryptKey', {
required: t('common:common.Name is empty') || 'Name is empty'
required: t('common:common.name_is_empty') || 'name_is_empty'
})}
/>
</Flex>
@@ -183,7 +183,7 @@ const FeiShuEditModal = ({
placeholder="Verification Token"
// maxLength={20}
{...register('app.verificationToken', {
required: t('common:common.Name is empty') || 'Name is empty'
required: t('common:common.name_is_empty') || 'name_is_empty'
})}
/>
</Flex>

View File

@@ -108,7 +108,7 @@ const FeiShu = ({ appId }: { appId: string }) => {
)}
<Td>
{item.lastTime
? t(formatTimeToChatTime(item.lastTime))
? t(formatTimeToChatTime(item.lastTime) as any)
: t('common:common.Un used')}
</Td>
<Td display={'flex'} alignItems={'center'}>

View File

@@ -308,7 +308,7 @@ function EditLinkModal({
placeholder={publishT('Link Name')}
maxLength={20}
{...register('name', {
required: t('common:common.Name is empty') || 'Name is empty'
required: t('common:common.name_is_empty') || 'name_is_empty'
})}
/>
</Flex>

View File

@@ -214,10 +214,10 @@ const RenderList = React.memo(function RenderList({
borderRadius={'0'}
/>
<Box ml={5} flex={'1 0 0'}>
<Box color={'black'}>{t(item.name)}</Box>
<Box color={'black'}>{t(item.name as any)}</Box>
{item.intro && (
<Box className="textEllipsis3" color={'myGray.500'} fontSize={'xs'}>
{t(item.intro)}
{t(item.intro as any)}
</Box>
)}
</Box>
@@ -264,7 +264,7 @@ const RenderList = React.memo(function RenderList({
return (
<Box key={input.key} _notLast={{ mb: 4 }} px={1}>
<Flex position={'relative'} mb={1} alignItems={'center'}>
{t(input.debugLabel || input.label)}
{t(input.debugLabel || (input.label as any))}
{input.description && <QuestionTip label={input.description} ml={1} />}
</Flex>
{(() => {
@@ -274,7 +274,7 @@ const RenderList = React.memo(function RenderList({
{...register(input.key, {
required
})}
placeholder={t(input.placeholder || '')}
placeholder={t(input.placeholder || ('' as any))}
bg={'myGray.50'}
/>
);
@@ -308,7 +308,7 @@ const RenderList = React.memo(function RenderList({
return (
<JsonEditor
bg={'myGray.50'}
placeholder={t(input.placeholder || '')}
placeholder={t(input.placeholder || ('' as any))}
resize
value={getValues(input.key)}
onChange={(e) => {

View File

@@ -64,7 +64,7 @@ const TagsEditModal = ({ onClose }: { onClose: () => void }) => {
>
<ModalBody>
<Box mb={3} fontWeight="semibold">
{t('common:团队标签')}
{t('common:team_tag')}
</Box>
<Menu closeOnSelect={false}>
<MenuButton className="menu-btn" maxHeight={'250'} w={'100%'}>

View File

@@ -333,11 +333,11 @@ const RenderList = React.memo(function RenderList({
template: {
...templateNode,
name: computedNewNodeName({
templateName: t(templateNode.name),
templateName: t(templateNode.name as any),
flowNodeType: templateNode.flowNodeType,
pluginId: templateNode.pluginId
}),
intro: t(templateNode.intro || '')
intro: t(templateNode.intro || ('' as any))
},
position: { x: mouseX, y: mouseY - 20 },
selected: true
@@ -374,7 +374,7 @@ const RenderList = React.memo(function RenderList({
{item.label && (
<Flex>
<Box fontSize={'sm'} fontWeight={'bold'} flex={1}>
{t(item.label)}
{t(item.label as any)}
</Box>
</Flex>
)}
@@ -394,11 +394,11 @@ const RenderList = React.memo(function RenderList({
borderRadius={'0'}
/>
<Box fontWeight={'bold'} ml={3}>
{t(template.name)}
{t(template.name as any)}
</Box>
</Flex>
<Box mt={2} color={'myGray.500'}>
{t(template.intro) || t('common:core.workflow.Not intro')}
{t(template.intro as any) || t('common:core.workflow.Not intro')}
</Box>
</Box>
}
@@ -441,7 +441,7 @@ const RenderList = React.memo(function RenderList({
borderRadius={'0'}
/>
<Box color={'black'} fontSize={'sm'} ml={5} flex={'1 0 0'}>
{t(template.name)}
{t(template.name as any)}
</Box>
</Flex>
</MyTooltip>

View File

@@ -193,7 +193,7 @@ export const useDebug = () => {
{...register(input.key, {
required
})}
placeholder={t(input.placeholder || '')}
placeholder={t(input.placeholder || ('' as any))}
bg={'myGray.50'}
/>
);
@@ -232,7 +232,7 @@ export const useDebug = () => {
return (
<JsonEditor
bg={'myGray.50'}
placeholder={t(input.placeholder || '')}
placeholder={t(input.placeholder || ('' as any))}
resize
value={value}
onChange={(e) => {
@@ -251,7 +251,7 @@ export const useDebug = () => {
*
</Box>
)}
{t(input.debugLabel || input.label)}
{t(input.debugLabel || (input.label as any))}
</Box>
{input.description && <QuestionTip ml={2} label={input.description} />}
</Flex>

View File

@@ -203,7 +203,7 @@ function Reference({
/>
</Flex>
<ReferSelector
placeholder={t(inputChildren.referencePlaceholder || '选择知识库引用')}
placeholder={t((inputChildren.referencePlaceholder as any) || '选择知识库引用')}
list={referenceList}
value={formatValue}
onSelect={onSelect}

View File

@@ -321,7 +321,7 @@ const Reference = ({
return (
<ReferSelector
placeholder={t('common:选择引用变量')}
placeholder={t('common:select_reference_variable')}
list={referenceList}
value={formatValue}
onSelect={onSelect}

View File

@@ -163,7 +163,7 @@ const FieldEditModal = ({
}, [inputType]);
const valueTypeSelectList = Object.values(FlowValueTypeMap).map((item) => ({
label: t(item.label),
label: t(item.label as any),
value: item.value
}));
const defaultValueType =

View File

@@ -116,8 +116,8 @@ const NodePluginInput = ({ data, selected }: NodeProps<FlowNodeItemType>) => {
const inputType = input.renderTypeList[0];
return {
icon: FlowNodeInputMap[inputType]?.icon as string,
label: t(input.label),
type: input.valueType ? t(FlowValueTypeMap[input.valueType]?.label) : '-',
label: t(input.label as any),
type: input.valueType ? t(FlowValueTypeMap[input.valueType]?.label as any) : '-',
isTool: !!input.toolDescription,
key: input.key
};

View File

@@ -200,7 +200,7 @@ function Reference({
/>
</Flex>
<ReferSelector
placeholder={t(input.referencePlaceholder || '选择引用变量')}
placeholder={t((input.referencePlaceholder as any) || 'select_reference_variable')}
list={referenceList}
value={formatValue}
onSelect={onSelect}

View File

@@ -302,7 +302,7 @@ const Reference = ({
return (
<ReferSelector
placeholder={t('common:选择引用变量')}
placeholder={t('common:select_reference_variable')}
list={referenceList}
value={formatValue}
onSelect={onSelect}

View File

@@ -139,7 +139,7 @@ const NodeCard = (props: Props) => {
<Flex alignItems={'center'}>
<Avatar src={avatar} borderRadius={'0'} objectFit={'contain'} w={'30px'} h={'30px'} />
<Box ml={3} fontSize={'md'} fontWeight={'medium'}>
{t(name)}
{t(name as any)}
</Box>
{!menuForbid?.rename && (
<MyIcon
@@ -443,7 +443,7 @@ const NodeIntro = React.memo(function NodeIntro({
<>
<Flex alignItems={'flex-end'} py={1}>
<Box fontSize={'xs'} color={'myGray.600'} flex={'1 0 0'}>
{t(intro)}
{t(intro as any)}
</Box>
{NodeIsTool && (
<Button

View File

@@ -62,7 +62,7 @@ const FieldModal = ({
if (!customInputConfig.selectValueTypeList) return [];
const dataTypeSelectList = Object.values(FlowValueTypeMap).map((item) => ({
label: t(item.label),
label: t(item.label as any),
value: item.value
}));

View File

@@ -52,8 +52,8 @@ const InputLabel = ({ nodeId, input }: Props) => {
fontWeight={'medium'}
color={'myGray.600'}
>
<FormLabel required={required}>{t(label)}</FormLabel>
{description && <QuestionTip ml={1} label={t(description)}></QuestionTip>}
<FormLabel required={required}>{t(label as any)}</FormLabel>
{description && <QuestionTip ml={1} label={t(description as any)}></QuestionTip>}
</Flex>
{/* value type */}
{renderType === FlowNodeInputTypeEnum.reference && <ValueTypeLabel valueType={valueType} />}

View File

@@ -59,7 +59,7 @@ const DynamicInputs = (props: RenderInputProps) => {
<HStack className="nodrag" cursor={'default'} position={'relative'}>
<HStack spacing={1} position={'relative'} fontWeight={'medium'} color={'myGray.600'}>
<Box>{item.label || workflowT('Custom input')}</Box>
{item.description && <QuestionTip label={t(item.description)} />}
{item.description && <QuestionTip label={t(item.description as any)} />}
</HStack>
<Box flex={'1 0 0'} />
<Button
@@ -208,7 +208,7 @@ function Reference({
/>
</Flex>
<ReferSelector
placeholder={t(inputChildren.referencePlaceholder || '选择引用变量')}
placeholder={t((inputChildren.referencePlaceholder as any) || 'select_reference_variable')}
list={referenceList}
value={formatValue}
onSelect={onSelect}

View File

@@ -79,7 +79,7 @@ const Reference = ({ item, nodeId }: RenderInputProps) => {
return (
<ReferSelector
placeholder={t(item.referencePlaceholder || '选择引用变量')}
placeholder={t((item.referencePlaceholder as any) || 'select_reference_variable')}
list={referenceList}
value={formatValue}
onSelect={onSelect}
@@ -121,7 +121,7 @@ export const useReference = ({
label: (
<Flex alignItems={'center'}>
<Avatar mr={1} src={node.avatar} w={'14px'} borderRadius={'ms'} />
<Box>{t(node.name)}</Box>
<Box>{t(node.name as any)}</Box>
</Flex>
),
value: node.nodeId,
@@ -135,7 +135,7 @@ export const useReference = ({
.filter((output) => output.id !== NodeOutputKeyEnum.addOutputParam)
.map((output) => {
return {
label: t(output.label || ''),
label: t((output.label as any) || ''),
value: output.id
};
})

View File

@@ -54,10 +54,10 @@ const TextareaRender = ({ inputs = [], item, nodeId }: RenderInputProps) => {
return (
<PromptEditor
variables={variables}
title={t(item.label)}
title={t(item.label as any)}
maxLength={item.maxLength}
h={150}
placeholder={t(item.placeholder || '')}
placeholder={t((item.placeholder as any) || '')}
value={item.value}
onChange={onChange}
isFlow={true}

View File

@@ -65,7 +65,7 @@ const FieldModal = ({
const dataTypeSelectList = Object.values(FlowValueTypeMap)
.slice(0, -1)
.map((item) => ({
label: t(item.label),
label: t(item.label as any),
value: item.value
}));

View File

@@ -33,9 +33,9 @@ const OutputLabel = ({ nodeId, output }: { nodeId: string; output: FlowNodeOutpu
mr={1}
ml={output.type === FlowNodeOutputTypeEnum.source ? 1 : 0}
>
{t(label)}
{t(label as any)}
</Box>
{description && <QuestionTip label={t(description)} />}
{description && <QuestionTip label={t(description as any)} />}
<ValueTypeLabel valueType={valueType} />
</Flex>
{output.type === FlowNodeOutputTypeEnum.source && (

View File

@@ -97,7 +97,7 @@ const RenderOutput = ({
<VariableTable
variables={filterAddOutput.map((output) => ({
label: output.label || '-',
type: output.valueType ? t(FlowValueTypeMap[output.valueType]?.label) : '-',
type: output.valueType ? t(FlowValueTypeMap[output.valueType]?.label as any) : '-',
key: output.key
}))}
onEdit={(key) => {

View File

@@ -197,11 +197,11 @@ const CreateModal = ({ onClose, type }: { type: CreateAppType; onClose: () => vo
<Flex alignItems={'center'}>
<Avatar src={item.avatar} borderRadius={'md'} w={'20px'} />
<Box ml={3} color={'myGray.900'}>
{t(item.name)}
{t(item.name as any)}
</Box>
</Flex>
<Box fontSize={'xs'} mt={2} color={'myGray.600'}>
{t(item.intro)}
{t(item.intro as any)}
</Box>
</Card>
))}

View File

@@ -227,7 +227,7 @@ const HttpPluginEditModal = ({
ml={4}
bg={'myWhite.600'}
{...register('name', {
required: t("common.Name Can't Be Empty")
required: t('common:common.name_is_empty')
})}
/>
</Flex>

View File

@@ -121,7 +121,7 @@ const Header = ({}: {}) => {
FirstPathDom={
<>
<Box fontWeight={'bold'} fontSize={['sm', 'md']}>
{t(DatasetTypeMap[datasetDetail?.type]?.collectionLabel)}({total})
{t(DatasetTypeMap[datasetDetail?.type]?.collectionLabel as any)}({total})
</Box>
{datasetDetail?.websiteConfig?.url && (
<Flex fontSize={'sm'}>

View File

@@ -137,7 +137,7 @@ const CollectionCard = () => {
getData(pageNum);
toast({
status: 'success',
title: t(DatasetCollectionSyncResultMap[res]?.label)
title: t(DatasetCollectionSyncResultMap[res]?.label as any)
});
},
errorToast: t('common:core.dataset.error.Start Sync Failed')
@@ -247,7 +247,7 @@ const CollectionCard = () => {
</Td>
<Td py={2}>
{!checkCollectionIsFolder(collection.type) ? (
<>{t(getTrainingTypeLabel(collection.trainingType) || '-')}</>
<>{t((getTrainingTypeLabel(collection.trainingType) || '-') as any)}</>
) : (
'-'
)}
@@ -259,7 +259,7 @@ const CollectionCard = () => {
</Td>
<Td py={2}>
<MyTag showDot colorSchema={collection.colorSchema as any} type={'borderFill'}>
{t(collection.statusText)}
{t(collection.statusText as any)}
</MyTag>
</Td>
<Td py={2} onClick={(e) => e.stopPropagation()}>

View File

@@ -142,7 +142,7 @@ const DataCard = () => {
return [
{
label: t('common:core.dataset.collection.metadata.source'),
value: t(DatasetCollectionTypeMap[collection.type]?.name)
value: t(DatasetCollectionTypeMap[collection.type]?.name as any)
},
{
label: t('common:core.dataset.collection.metadata.source name'),
@@ -166,7 +166,7 @@ const DataCard = () => {
},
{
label: t('common:core.dataset.collection.metadata.Training Type'),
value: t(TrainingTypeMap[collection.trainingType]?.label)
value: t(TrainingTypeMap[collection.trainingType]?.label as any)
},
{
label: t('common:core.dataset.collection.metadata.Chunk Size'),

View File

@@ -85,9 +85,9 @@ function DataProcess({ showPreviewChunks = true }: { showPreviewChunks: boolean
<FormLabel flex={'0 0 100px'}>{t('common:core.dataset.import.Training mode')}</FormLabel>
<LeftRadio
list={trainingModeList.map(([key, value]) => ({
title: t(value.label),
title: t(value.label as any),
value: key,
tooltip: t(value.tooltip)
tooltip: t(value.tooltip as any)
}))}
px={3}
py={2}

View File

@@ -81,7 +81,7 @@ const InputDataModal = ({
icon: 'common/overviewLight'
},
{
label: t('dataset.data.edit.Index', { amount: indexes.length }),
label: t('common:dataset.data.edit.Index', { amount: indexes.length }),
value: TabEnum.index,
icon: 'kbTest'
},
@@ -126,7 +126,7 @@ const InputDataModal = ({
onError(err) {
toast({
status: 'error',
title: t(getErrText(err))
title: t(getErrText(err) as any)
});
onClose();
}

View File

@@ -196,7 +196,7 @@ const Test = ({ datasetId }: { datasetId: string }) => {
size={'sm'}
onClick={onOpenSelectMode}
>
{t(searchModeData.title)}
{t(searchModeData.title as any)}
</Button>
</Flex>
@@ -371,7 +371,7 @@ const TestHistories = React.memo(function TestHistories({
w={'12px'}
mr={'1px'}
/>
{t(DatasetSearchModeMap[item.searchMode].title)}
{t(DatasetSearchModeMap[item.searchMode].title as any)}
</Flex>
) : (
'-'
@@ -382,7 +382,7 @@ const TestHistories = React.memo(function TestHistories({
</Box>
<Box flex={'0 0 70px'}>
{formatTimeToChatTime(item.time).includes('.')
? t(formatTimeToChatTime(item.time))
? t(formatTimeToChatTime(item.time) as any)
: formatTimeToChatTime(item.time)}
</Box>
<MyTooltip label={t('common:core.dataset.test.delete test history')}>

View File

@@ -45,7 +45,7 @@ const Detail = ({ datasetId, currentTab }: Props) => {
onError(err: any) {
router.replace(`/dataset/list`);
toast({
title: t(getErrText(err, t('common:common.Load Failed'))),
title: t(getErrText(err, t('common:common.Load Failed')) as any),
status: 'error'
});
}

View File

@@ -41,7 +41,7 @@ const WechatForm = ({ setPageType, loginSuccess }: Props) => {
<FormLayout setPageType={setPageType} pageType={LoginPageTypeEnum.wechat}>
<Box>
<Box w={'full'} textAlign={'center'} pt={5}>
{t('common:support.user.login.Wx qr login')}
{t('common:support.user.login.wx_qr_login')}
</Box>
<Box p={5} display={'flex'} w={'full'} justifyContent={'center'}>
{wechatInfo?.codeUrl ? (

View File

@@ -71,7 +71,7 @@ const RegisterForm = ({ setPageType, loginSuccess }: Props) => {
defaultAppTemplates.forEach((template) => {
postCreateApp({
avatar: template.avatar,
name: t(template.name),
name: t(template.name as any),
modules: template.modules,
edges: template.edges,
type: template.type

View File

@@ -157,13 +157,13 @@ const Standard = ({
})}
>
<Box fontSize={'md'} fontWeight={'500'}>
{t(item.label)}
{t(item.label as any)}
</Box>
<Box fontSize={['32px', '42px']} fontWeight={'bold'}>
{item.price}
</Box>
<Box color={'myGray.500'} h={'40px'} fontSize={'xs'}>
{t(item.desc, { title: feConfigs?.systemTitle })}
{t(item.desc as any, { title: feConfigs?.systemTitle })}
</Box>
{(() => {
if (