i18n: register Hungarian locale and backfill files.migration_* keys

This commit is contained in:
Linus Rath
2026-06-04 00:56:50 +02:00
parent 58e3ecc97a
commit 5288821605
20 changed files with 65 additions and 18 deletions
+12
View File
@@ -98,6 +98,17 @@ export function FlagDE(props: FlagProps) {
);
}
/** Hungary Red, White, Green horizontal */
export function FlagHU(props: FlagProps) {
return (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 3" width={W} height={H} className={flagClass} {...props}>
<rect width="6" height="1" fill="#CD2A3E" />
<rect y="1" width="6" height="1" fill="#fff" />
<rect y="2" width="6" height="1" fill="#436F4D" />
</svg>
);
}
/** Latvia Maroon, White, Maroon horizontal */
export function FlagLV(props: FlagProps) {
return (
@@ -219,6 +230,7 @@ export const flagComponents: Record<string, (props: FlagProps) => ReactElement>
en: FlagGB,
es: FlagES,
fr: FlagFR,
hu: FlagHU,
it: FlagIT,
ja: FlagJP,
ko: FlagKR,
+1
View File
@@ -15,6 +15,7 @@ const languages = [
{ value: 'es', label: 'Español' },
{ value: 'fr', label: 'Français' },
{ value: 'it', label: 'Italiano' },
{ value: 'hu', label: 'Magyar' },
{ value: 'lv', label: 'Latviešu' },
{ value: 'nl', label: 'Nederlands' },
{ value: 'pl', label: 'Polski' },