feat(i18n): add danish localization

This commit is contained in:
Jesper Ordrup
2026-05-15 14:26:33 +02:00
committed by Linus Rath
parent fae15f073e
commit 5fdf226ebe
7 changed files with 2931 additions and 3 deletions
+2
View File
@@ -19,6 +19,7 @@ import ruMessages from '@/locales/ru/common.json';
import trMessages from '@/locales/tr/common.json';
import ukMessages from '@/locales/uk/common.json';
import zhMessages from '@/locales/zh/common.json';
import daMessages from '@/locales/da/common.json';
// Pre-loaded translations (loaded at build time, not runtime)
const ALL_MESSAGES = {
@@ -38,6 +39,7 @@ const ALL_MESSAGES = {
tr: trMessages,
uk: ukMessages,
zh: zhMessages,
da: daMessages
};
interface IntlProviderProps {