From 88e561a5490003a41665eb007c5c28ff0800ae09 Mon Sep 17 00:00:00 2001 From: Matt Mayer <152770+matthewmayer@users.noreply.github.com> Date: Wed, 29 Mar 2023 16:28:56 +0700 Subject: feat(locale): add fi states (#1986) --- src/locales/fi/index.ts | 2 ++ src/locales/fi/location/index.ts | 12 ++++++++++++ src/locales/fi/location/state.ts | 21 +++++++++++++++++++++ 3 files changed, 35 insertions(+) create mode 100644 src/locales/fi/location/index.ts create mode 100644 src/locales/fi/location/state.ts (limited to 'src') 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', +]; -- cgit v1.2.3