Skip to content

Commit 88e561a

Browse files
authored
feat(locale): add fi states (#1986)
1 parent 2c9e0b8 commit 88e561a

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

src/locales/fi/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33
* Run 'pnpm run generate:locales' to update.
44
*/
55
import type { LocaleDefinition } from '../..';
6+
import location from './location';
67
import person from './person';
78

89
const fi: LocaleDefinition = {
910
title: 'Finnish',
11+
location,
1012
person,
1113
};
1214

src/locales/fi/location/index.ts

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* This file is automatically generated.
3+
* Run 'pnpm run generate:locales' to update.
4+
*/
5+
import type { LocationDefinitions } from '../../..';
6+
import state from './state';
7+
8+
const location: LocationDefinitions = {
9+
state,
10+
};
11+
12+
export default location;

src/locales/fi/location/state.ts

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
export default [
2+
'Ahvenanmaa',
3+
'Etelä-Karjala',
4+
'Etelä-Pohjanmaa',
5+
'Etelä-Savo',
6+
'Kainuu',
7+
'Kanta-Häme',
8+
'Keski-Pohjanmaa',
9+
'Keski-Suomi',
10+
'Kymenlaakso',
11+
'Lappi',
12+
'Päijät-Häme',
13+
'Pirkanmaa',
14+
'Pohjanmaa',
15+
'Pohjois-Karjala',
16+
'Pohjois-Pohjanmaa',
17+
'Pohjois-Savo',
18+
'Satakunta',
19+
'Uusimaa',
20+
'Varsinais-Suomi',
21+
];

0 commit comments

Comments
 (0)