From a808819a1130741751f82ac90921a62a60fff7ba Mon Sep 17 00:00:00 2001 From: Lurkars Date: Wed, 26 Jan 2022 10:38:40 +0100 Subject: [PATCH] fix de-DE index.js --- front/src/i18n/de-DE/index.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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;