diff --git a/front/src/i18n/de-DE/index.ts b/front/src/i18n/de-DE/index.ts index d9e8bb48..f07a5b01 100644 --- a/front/src/i18n/de-DE/index.ts +++ b/front/src/i18n/de-DE/index.ts @@ -1,17 +1,19 @@ -import type { BaseTranslation } from "../i18n-types"; +import en_US from "../en-US"; +import type { Translation } from "../i18n-types"; import audio from "./audio"; import camera from "./camera"; import chat from "./chat"; import companion from "./companion"; -import woka from "./woka"; import error from "./error"; import follow from "./follow"; import login from "./login"; import menu from "./menu"; import report from "./report"; import warning from "./warning"; +import woka from "./woka"; -const en_US: BaseTranslation = { +const de_DE: Translation = { + ...en_US, language: "Deutsch", country: "Deutschland", audio, @@ -27,4 +29,4 @@ const en_US: BaseTranslation = { warning, }; -export default en_US; +export default de_DE;