Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(locale): add Swedish(sv) counties #3154

Merged
merged 3 commits into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions src/locales/sv/location/county.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
export default [
'Blekinge län',
'Dalarnas län',
'Gotlands län',
'Gävleborgs län',
'Hallands län',
'Jämtlands län',
'Jönköpings län',
'Kalmar län',
'Kronobergs län',
'Norrbottens län',
'Skåne län',
'Stockholms län',
'Södermanlands län',
'Uppsala län',
'Värmlands län',
'Västerbottens län',
'Västernorrlands län',
'Västmanlands län',
'Västra Götalands län',
'Örebro län',
'Östergötlands län',
];
2 changes: 2 additions & 0 deletions src/locales/sv/location/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import city_prefix from './city_prefix';
import city_suffix from './city_suffix';
import common_street_suffix from './common_street_suffix';
import country from './country';
import county from './county';
import postcode from './postcode';
import secondary_address from './secondary_address';
import state from './state';
Expand All @@ -25,6 +26,7 @@ const location: LocationDefinition = {
city_suffix,
common_street_suffix,
country,
county,
postcode,
secondary_address,
state,
Expand Down