Skip to content

Commit

Permalink
feat(locale): add directions and directions abbr to pl (#1225)
Browse files Browse the repository at this point in the history
  • Loading branch information
hankucz committed Aug 19, 2022
1 parent 5585869 commit 7a718b9
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/locales/pl/address/direction.ts
@@ -0,0 +1,11 @@
// Source: https://pl.wikipedia.org/wiki/Strony_świata
export default [
'północ',
'wschód',
'południe',
'zachód',
'północny wschód',
'południowy wschód',
'południowy zachód',
'północny zachód',
];
11 changes: 11 additions & 0 deletions src/locales/pl/address/direction_abbr.ts
@@ -0,0 +1,11 @@
// Source: https://pl.wikipedia.org/wiki/Strony_świata
export default [
'pn.',
'wsch.',
'pd.',
'zach.',
'pn. wsch.',
'pd. wsch.',
'pd. zach.',
'pn. zach.',
];
4 changes: 4 additions & 0 deletions src/locales/pl/address/index.ts
Expand Up @@ -8,6 +8,8 @@ import city from './city';
import city_name from './city_name';
import country from './country';
import default_country from './default_country';
import direction from './direction';
import direction_abbr from './direction_abbr';
import postcode from './postcode';
import secondary_address from './secondary_address';
import state from './state';
Expand All @@ -22,6 +24,8 @@ const address: AddressDefinitions = {
city_name,
country,
default_country,
direction,
direction_abbr,
postcode,
secondary_address,
state,
Expand Down

0 comments on commit 7a718b9

Please sign in to comment.