From 7148b56eea1f97bc5ba75daa4e33e27a5c526e51 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 21 Jun 2023 20:14:21 +0200 Subject: [PATCH] feat(i18n): enable Danish translation --- src/i18n/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/index.ts b/src/i18n/index.ts index 8b49bc9df..25bd8fe39 100644 --- a/src/i18n/index.ts +++ b/src/i18n/index.ts @@ -16,6 +16,7 @@ export const SUPPORTED_LOCALES = { 'zh-CN': 'Chinese', 'no-NO': 'Norsk Bokmål', 'es-ES': 'Español', + 'da-DK': 'Dansk', } as const export type SupportedLocale = keyof typeof SUPPORTED_LOCALES