Skip to content

Commit

Permalink
feat(locale): add hu states (#1990)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewmayer committed Mar 30, 2023
1 parent 6ba5093 commit 3ae3691
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/locales/hu/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand All @@ -21,6 +22,7 @@ const hu: LocaleDefinition = {
date,
finance,
internet,
location,
person,
phone_number,
word,
Expand Down
12 changes: 12 additions & 0 deletions src/locales/hu/location/index.ts
Original file line number Diff line number Diff line change
@@ -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;
22 changes: 22 additions & 0 deletions src/locales/hu/location/state.ts
Original file line number Diff line number Diff line change
@@ -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',
];

0 comments on commit 3ae3691

Please sign in to comment.