fix de-DE index.js

This commit is contained in:
Lurkars 2022-01-26 10:38:40 +01:00
parent a55e5373fc
commit a808819a11

View File

@ -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 audio from "./audio";
import camera from "./camera"; import camera from "./camera";
import chat from "./chat"; import chat from "./chat";
import companion from "./companion"; import companion from "./companion";
import woka from "./woka";
import error from "./error"; import error from "./error";
import follow from "./follow"; import follow from "./follow";
import login from "./login"; import login from "./login";
import menu from "./menu"; import menu from "./menu";
import report from "./report"; import report from "./report";
import warning from "./warning"; import warning from "./warning";
import woka from "./woka";
const en_US: BaseTranslation = { const de_DE: Translation = {
...en_US,
language: "Deutsch", language: "Deutsch",
country: "Deutschland", country: "Deutschland",
audio, audio,
@ -27,4 +29,4 @@ const en_US: BaseTranslation = {
warning, warning,
}; };
export default en_US; export default de_DE;