diff --git a/components/ui/flag-icons.tsx b/components/ui/flag-icons.tsx index 03d57b30..417bf1f6 100644 --- a/components/ui/flag-icons.tsx +++ b/components/ui/flag-icons.tsx @@ -202,7 +202,7 @@ export function FlagCS(props: FlagProps) { } /** Danish flag - Red with a white cross */ -export function FlagDa(props: FlagProps) { +export function FlagDA(props: FlagProps) { return ( @@ -229,4 +229,5 @@ export const flagComponents: Record ReactElement> uk: FlagUA, zh: FlagCN, cs: FlagCS, + da: FlagDA }; diff --git a/components/ui/language-switcher.tsx b/components/ui/language-switcher.tsx index 0cb7ce9c..912d571a 100644 --- a/components/ui/language-switcher.tsx +++ b/components/ui/language-switcher.tsx @@ -13,7 +13,7 @@ const languages = [ { value: 'fr', label: 'Français' }, { value: 'ja', label: '日本語' }, { value: 'ko', label: '한국어' }, - { value: 'da', label: 'Danish' }, + { value: 'da', label: 'Dansk' }, { value: 'de', label: 'Deutsch' }, { value: 'es', label: 'Español' }, { value: 'it', label: 'Italiano' },