Add danish to language (#150)

I've already submitted all the required translations, on Weblate, I believe.
This commit is contained in:
SorteKanin 2023-06-03 23:27:47 +02:00 committed by GitHub
parent 172f3e5dea
commit c4d7647a31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,7 @@ import i18next, { i18nTyped, Resource } from "i18next";
// Languages // Languages
import { bg } from "./translations/bg"; import { bg } from "./translations/bg";
import { da } from "./translations/da";
import { de } from "./translations/de"; import { de } from "./translations/de";
import { el } from "./translations/el"; import { el } from "./translations/el";
import { en } from "./translations/en"; import { en } from "./translations/en";
@ -26,6 +27,7 @@ import { zh } from "./translations/zh";
export const languages = [ export const languages = [
{ resource: bg, code: "bg", name: "Български" }, { resource: bg, code: "bg", name: "Български" },
{ resource: da, code: "da", name: "Dansk" },
{ resource: de, code: "de", name: "Deutsch" }, { resource: de, code: "de", name: "Deutsch" },
{ resource: el, code: "el", name: "Ελληνικά" }, { resource: el, code: "el", name: "Ελληνικά" },
{ resource: en, code: "en", name: "English" }, { resource: en, code: "en", name: "English" },