diff options
| author | Hanna <[email protected]> | 2022-08-19 09:27:27 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-08-19 07:27:27 +0000 |
| commit | 7a718b928dc255dc40791025e0b0c0bed6a4d2f9 (patch) | |
| tree | f75cdebb616bead7b4dfca089f8881aa58fdeed6 /src | |
| parent | 5585869dc3106274fd9a00ea29a265bf37f48e34 (diff) | |
| download | faker-7a718b928dc255dc40791025e0b0c0bed6a4d2f9.tar.xz faker-7a718b928dc255dc40791025e0b0c0bed6a4d2f9.zip | |
feat(locale): add directions and directions abbr to pl (#1225)
Diffstat (limited to 'src')
| -rw-r--r-- | src/locales/pl/address/direction.ts | 11 | ||||
| -rw-r--r-- | src/locales/pl/address/direction_abbr.ts | 11 | ||||
| -rw-r--r-- | src/locales/pl/address/index.ts | 4 |
3 files changed, 26 insertions, 0 deletions
diff --git a/src/locales/pl/address/direction.ts b/src/locales/pl/address/direction.ts new file mode 100644 index 00000000..08a8dacd --- /dev/null +++ b/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', +]; diff --git a/src/locales/pl/address/direction_abbr.ts b/src/locales/pl/address/direction_abbr.ts new file mode 100644 index 00000000..84eb9c07 --- /dev/null +++ b/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.', +]; diff --git a/src/locales/pl/address/index.ts b/src/locales/pl/address/index.ts index ca688b91..8ccf4197 100644 --- a/src/locales/pl/address/index.ts +++ b/src/locales/pl/address/index.ts @@ -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'; @@ -22,6 +24,8 @@ const address: AddressDefinitions = { city_name, country, default_country, + direction, + direction_abbr, postcode, secondary_address, state, |
