Skip to content

Commit

Permalink
feat(locale): add GB subdivision codes (#2233)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinvanderVliet authored Jul 9, 2023
1 parent 4a15bd0 commit 5eec65f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/locales/en_GB/location/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import county from './county';
import default_country from './default_country';
import postcode from './postcode';
import state from './state';
import state_abbr from './state_abbr';
import street_pattern from './street_pattern';
import street_suffix from './street_suffix';

Expand All @@ -25,6 +26,7 @@ const location: LocationDefinition = {
default_country,
postcode,
state,
state_abbr,
street_pattern,
street_suffix,
};
Expand Down
2 changes: 1 addition & 1 deletion src/locales/en_GB/location/state.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default ['England', 'Scotland', 'Wales', 'Northern Ireland'];
export default ['England', 'Northern Ireland', 'Scotland', 'Wales'];
1 change: 1 addition & 0 deletions src/locales/en_GB/location/state_abbr.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default ['ENG', 'NIR', 'SCT', 'WLS'];

0 comments on commit 5eec65f

Please sign in to comment.