i18n: clean up Danish locale wiring and sort language lists 286

This commit is contained in:
Linus Rath
2026-05-15 14:31:24 +02:00
parent e700e4fd04
commit d1a0667c79
6 changed files with 28 additions and 28 deletions
+9 -9
View File
@@ -201,25 +201,27 @@ export function FlagCS(props: FlagProps) {
);
}
/** Danish flag - Red with a white cross */
export function FlagDA(props: FlagProps) {
/** Denmark Red with a white Nordic cross */
export function FlagDK(props: FlagProps) {
return (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 37 28" width={W} height={H} className={flagClass} {...props}>
<path fill="#c8102e" d="M0,0H37V28H0Z" />
<path stroke="#fff" stroke-width="4" d="M0,14h37M14,0v28" />
<path fill="#C8102E" d="M0,0H37V28H0Z" />
<path stroke="#fff" strokeWidth="4" d="M0,14h37M14,0v28" />
</svg>
);
}
/** Map locale codes to flag components */
export const flagComponents: Record<string, (props: FlagProps) => ReactElement> = {
cs: FlagCS,
da: FlagDK,
de: FlagDE,
en: FlagGB,
es: FlagES,
fr: FlagFR,
it: FlagIT,
ja: FlagJP,
ko: FlagKR,
es: FlagES,
it: FlagIT,
de: FlagDE,
lv: FlagLV,
nl: FlagNL,
pl: FlagPL,
@@ -228,6 +230,4 @@ export const flagComponents: Record<string, (props: FlagProps) => ReactElement>
tr: FlagTR,
uk: FlagUA,
zh: FlagCN,
cs: FlagCS,
da: FlagDA
};