diff options
| author | Matt Mayer <[email protected]> | 2023-03-29 16:28:56 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-03-29 09:28:56 +0000 |
| commit | 88e561a5490003a41665eb007c5c28ff0800ae09 (patch) | |
| tree | e5aed3c17965b75a5d0fb32100157005e35f4c96 /src | |
| parent | 2c9e0b8cfa2fea4f861be019ad23d11ff36613cf (diff) | |
| download | faker-88e561a5490003a41665eb007c5c28ff0800ae09.tar.xz faker-88e561a5490003a41665eb007c5c28ff0800ae09.zip | |
feat(locale): add fi states (#1986)
Diffstat (limited to 'src')
| -rw-r--r-- | src/locales/fi/index.ts | 2 | ||||
| -rw-r--r-- | src/locales/fi/location/index.ts | 12 | ||||
| -rw-r--r-- | src/locales/fi/location/state.ts | 21 |
3 files changed, 35 insertions, 0 deletions
diff --git a/src/locales/fi/index.ts b/src/locales/fi/index.ts index 3aa71040..2b14dc06 100644 --- a/src/locales/fi/index.ts +++ b/src/locales/fi/index.ts @@ -3,10 +3,12 @@ * Run 'pnpm run generate:locales' to update. */ import type { LocaleDefinition } from '../..'; +import location from './location'; import person from './person'; const fi: LocaleDefinition = { title: 'Finnish', + location, person, }; diff --git a/src/locales/fi/location/index.ts b/src/locales/fi/location/index.ts new file mode 100644 index 00000000..f6b9a5dd --- /dev/null +++ b/src/locales/fi/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/fi/location/state.ts b/src/locales/fi/location/state.ts new file mode 100644 index 00000000..4294fd47 --- /dev/null +++ b/src/locales/fi/location/state.ts @@ -0,0 +1,21 @@ +export default [ + 'Ahvenanmaa', + 'Etelä-Karjala', + 'Etelä-Pohjanmaa', + 'Etelä-Savo', + 'Kainuu', + 'Kanta-Häme', + 'Keski-Pohjanmaa', + 'Keski-Suomi', + 'Kymenlaakso', + 'Lappi', + 'Päijät-Häme', + 'Pirkanmaa', + 'Pohjanmaa', + 'Pohjois-Karjala', + 'Pohjois-Pohjanmaa', + 'Pohjois-Savo', + 'Satakunta', + 'Uusimaa', + 'Varsinais-Suomi', +]; |
