diff --git a/src/locales/hu/index.ts b/src/locales/hu/index.ts index f122d5e2efa..bb76bd57c00 100644 --- a/src/locales/hu/index.ts +++ b/src/locales/hu/index.ts @@ -9,6 +9,7 @@ import company from './company'; import date from './date'; import finance from './finance'; import internet from './internet'; +import location from './location'; import person from './person'; import phone_number from './phone_number'; import word from './word'; @@ -21,6 +22,7 @@ const hu: LocaleDefinition = { date, finance, internet, + location, person, phone_number, word, diff --git a/src/locales/hu/location/index.ts b/src/locales/hu/location/index.ts new file mode 100644 index 00000000000..f6b9a5dd0b6 --- /dev/null +++ b/src/locales/hu/location/index.ts @@ -0,0 +1,12 @@ +/* + * This file is automatically generated. + * Run 'pnpm run generate:locales' to update. + */ +import type { LocationDefinitions } from '../../..'; +import state from './state'; + +const location: LocationDefinitions = { + state, +}; + +export default location; diff --git a/src/locales/hu/location/state.ts b/src/locales/hu/location/state.ts new file mode 100644 index 00000000000..f8994240129 --- /dev/null +++ b/src/locales/hu/location/state.ts @@ -0,0 +1,22 @@ +export default [ + 'Bács-Kiskun', + 'Baranya', + 'Békés', + 'Borsod-Abaúj-Zemplén', + 'Budapest', + 'Csongrád-Csanád', + 'Fejér', + 'Győr-Moson-Sopron', + 'Hajdú-Bihar', + 'Heves', + 'Jász-Nagykun-Szolnok', + 'Komárom-Esztergom', + 'Nógrád', + 'Pest', + 'Somogy', + 'Szabolcs-Szatmár-Bereg', + 'Tolna', + 'Vas', + 'Veszprém', + 'Zala', +];