Skip to content

Commit

Permalink
feat(locale): add fi states (#1986)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewmayer committed Mar 29, 2023
1 parent 2c9e0b8 commit 88e561a
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/locales/fi/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};

Expand Down
12 changes: 12 additions & 0 deletions src/locales/fi/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;
21 changes: 21 additions & 0 deletions src/locales/fi/location/state.ts
Original file line number Diff line number Diff line change
@@ -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',
];

0 comments on commit 88e561a

Please sign in to comment.