feat(i18n): Add translation fields for de, en, ja, km, zhcn
- Update translation index to support Korean
`application/src/translation/index.ts`
- Update translation indexes
`application/src/translation/{de,en,ja,km,zhcn}/index.ts`
- Update dropdown menu item in dashboard header
`application/src/components/dashboard/Header.tsx`
This commit is contained in:
@@ -1,15 +1,17 @@
|
||||
import enTranslations from './en';
|
||||
import kmTranslations from './km';
|
||||
import deTranslations from './de';
|
||||
import koTranslations from './ko';
|
||||
import jaTranslations from './ja';
|
||||
import zhcnTranslations from './zhcn';
|
||||
|
||||
export type Language = "en" | "km" | "de" | "ja" | "zhcn";
|
||||
export type Language = "en" | "km" | "de" | "ko" | "ja" | "zhcn";
|
||||
|
||||
export const translations = {
|
||||
en: enTranslations,
|
||||
km: kmTranslations,
|
||||
de: deTranslations,
|
||||
ko: koTranslations,
|
||||
ja: jaTranslations,
|
||||
zhcn: zhcnTranslations,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user