From 3ae36919d052cbbcf21bf3f5cb16088668544f02 Mon Sep 17 00:00:00 2001 From: Matt Mayer <152770+matthewmayer@users.noreply.github.com> Date: Thu, 30 Mar 2023 22:29:57 +0700 Subject: feat(locale): add hu states (#1990) --- src/locales/hu/index.ts | 2 ++ src/locales/hu/location/index.ts | 12 ++++++++++++ src/locales/hu/location/state.ts | 22 ++++++++++++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 src/locales/hu/location/index.ts create mode 100644 src/locales/hu/location/state.ts (limited to 'src') diff --git a/src/locales/hu/index.ts b/src/locales/hu/index.ts index f122d5e2..bb76bd57 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 00000000..f6b9a5dd --- /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 00000000..f8994240 --- /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', +]; -- cgit v1.2.3