add support for zh_cn

This commit is contained in:
jiuhao47
2025-06-30 20:52:49 +08:00
parent 5d0777f67c
commit 39e09bedd3
69 changed files with 1498 additions and 2 deletions

View File

@@ -55,6 +55,10 @@ const LanguageAndRegionSettings = () => {
value: Language.DE,
label: 'Deutsch',
},
{
value: Language.ZH_CN,
label: "简体中文"
}
];
const handleLanguageChange = async (values: { language?: ILanguageType; timezone?: string }) => {
@@ -150,7 +154,7 @@ const LanguageAndRegionSettings = () => {
{t('save_changes')}
</Button>
</Form.Item>
</Form>): (
</Form>) : (
<Skeleton />
)}
</Card>