[IMP] Removed the old name and added german language.

This commit is contained in:
Michael Ortner
2025-05-17 21:10:10 +02:00
parent a1c6c7053e
commit e0c7541a87
6 changed files with 211 additions and 6 deletions
+3 -1
View File
@@ -1,12 +1,14 @@
import { enTranslations } from './en';
import { kmTranslations } from './km';
import { deTranslations } from './de';
export type Language = "en" | "km";
export type Language = "en" | "km" | "de";
export const translations = {
en: enTranslations,
km: kmTranslations,
de: deTranslations,
};
export type TranslationKey = keyof typeof enTranslations;