Feat: Add german translations (#5866)

### What problem does this PR solve?

Add Support for german language 

### Type of change

- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
Philipp Rien
2025-03-11 09:13:58 +01:00
committed by GitHub
parent 1abf03351d
commit 8250b9f6b0
6 changed files with 1200 additions and 1 deletions

View File

@ -7,6 +7,7 @@ import enUS from 'antd/locale/en_US';
import vi_VN from 'antd/locale/vi_VN';
import zhCN from 'antd/locale/zh_CN';
import zh_HK from 'antd/locale/zh_HK';
import deDE from 'antd/locale/de_DE';
import dayjs from 'dayjs';
import advancedFormat from 'dayjs/plugin/advancedFormat';
import customParseFormat from 'dayjs/plugin/customParseFormat';
@ -32,6 +33,7 @@ const AntLanguageMap = {
'zh-TRADITIONAL': zh_HK,
vi: vi_VN,
'pt-BR': pt_BR,
de: deDE,
};
const queryClient = new QueryClient();