From c4d7647a3175e6258bf72b4af3905822c373f269 Mon Sep 17 00:00:00 2001 From: SorteKanin Date: Sat, 3 Jun 2023 23:27:47 +0200 Subject: [PATCH] Add danish to language (#150) I've already submitted all the required translations, on Weblate, I believe. --- src/shared/i18next.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/shared/i18next.ts b/src/shared/i18next.ts index e5e804e..8adbff1 100644 --- a/src/shared/i18next.ts +++ b/src/shared/i18next.ts @@ -2,6 +2,7 @@ import i18next, { i18nTyped, Resource } from "i18next"; // Languages import { bg } from "./translations/bg"; +import { da } from "./translations/da"; import { de } from "./translations/de"; import { el } from "./translations/el"; import { en } from "./translations/en"; @@ -26,6 +27,7 @@ import { zh } from "./translations/zh"; export const languages = [ { resource: bg, code: "bg", name: "Български" }, + { resource: da, code: "da", name: "Dansk" }, { resource: de, code: "de", name: "Deutsch" }, { resource: el, code: "el", name: "Ελληνικά" }, { resource: en, code: "en", name: "English" },