changed: updated i18n.js to include danish translation

This commit is contained in:
LovelessCodes 2024-05-16 09:44:07 +02:00 committed by GitHub
parent 6edc2c7ce3
commit 466c9ed1a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,8 +3,9 @@ import { initReactI18next } from "react-i18next";
import LanguageDetector from "i18next-browser-languagedetector";
import { en, english } from "./locales/en";
import { zh, chinese } from "./locales/zh";
import { da, danish } from "./locales/da";
export const languages = [english, chinese];
export const languages = [english, chinese, danish];
i18n
.use(LanguageDetector)
@ -18,6 +19,7 @@ i18n
resources: {
en,
zh,
da,
},
});