perf: i18n (#4740)

* feat: login limit time config

* doc

* perf: code

* i18n update

* update lock

* fix: ts

* update package
This commit is contained in:
Archer
2025-05-05 16:16:59 +08:00
committed by GitHub
parent fdd4e9edbd
commit 864eff47c7
229 changed files with 1128 additions and 1293 deletions

View File

@@ -106,8 +106,8 @@ const CreateModal = ({
const { run: onclickCreate, loading: creating } = useRequest2(
async (data: CreateDatasetParams) => await postCreateDataset(data),
{
successToast: t('common:common.Create Success'),
errorToast: t('common:common.Create Failed'),
successToast: t('common:create_success'),
errorToast: t('common:create_failed'),
onSuccess(id) {
router.push(`/dataset/detail?datasetId=${id}`);
}
@@ -137,7 +137,7 @@ const CreateModal = ({
<Box>
<Flex justify={'space-between'}>
<Box color={'myGray.900'} fontWeight={500} fontSize={'sm'}>
{t('common:common.Set Name')}
{t('common:input_name')}
</Box>
{datasetTypeCourseMap[type] && (
<Flex
@@ -154,7 +154,7 @@ const CreateModal = ({
)}
</Flex>
<Flex mt={'12px'} alignItems={'center'}>
<MyTooltip label={t('common:common.avatar.Select Avatar')}>
<MyTooltip label={t('common:click_select_avatar')}>
<Avatar
flexShrink={0}
src={avatar}
@@ -170,7 +170,7 @@ const CreateModal = ({
flex={1}
autoFocus
bg={'myWhite.600'}
placeholder={t('common:common.Name')}
placeholder={t('common:Name')}
maxLength={30}
{...register('name', {
required: true
@@ -281,10 +281,10 @@ const CreateModal = ({
<ModalFooter px={9}>
<Button variant={'whiteBase'} mr={3} onClick={onClose}>
{t('common:common.Close')}
{t('common:Close')}
</Button>
<Button isLoading={creating} onClick={handleSubmit((data) => onclickCreate(data))}>
{t('common:common.Confirm Create')}
{t('common:comfirn_create')}
</Button>
</ModalFooter>