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 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;