diff options
| author | KeisukeYamashita <[email protected]> | 2023-06-17 14:48:54 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-06-17 05:48:54 +0000 |
| commit | 2fa60dec77551c055571ce3439f00c8898399d60 (patch) | |
| tree | 5ad0813b4ecec720a2b1d829f40b88e2fcb21735 /src | |
| parent | 36d1d3a6260067708474d057281d71bf3f95daf1 (diff) | |
| download | faker-2fa60dec77551c055571ce3439f00c8898399d60.tar.xz faker-2fa60dec77551c055571ce3439f00c8898399d60.zip | |
feat(locale): add direction to ja (#2191)
Signed-off-by: KeisukeYamashita <[email protected]>
Diffstat (limited to 'src')
| -rw-r--r-- | src/locales/ja/location/direction.ts | 1 | ||||
| -rw-r--r-- | src/locales/ja/location/index.ts | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/locales/ja/location/direction.ts b/src/locales/ja/location/direction.ts new file mode 100644 index 00000000..cefead57 --- /dev/null +++ b/src/locales/ja/location/direction.ts @@ -0,0 +1 @@ +export default ['北', '東', '南', '西', '北東', '北西', '南東', '南西']; diff --git a/src/locales/ja/location/index.ts b/src/locales/ja/location/index.ts index a4dfdd55..7f5d9e65 100644 --- a/src/locales/ja/location/index.ts +++ b/src/locales/ja/location/index.ts @@ -7,6 +7,7 @@ import city_pattern from './city_pattern'; import city_prefix from './city_prefix'; import city_suffix from './city_suffix'; import country from './country'; +import direction from './direction'; import postcode from './postcode'; import state from './state'; import state_abbr from './state_abbr'; @@ -17,6 +18,7 @@ const location: LocationDefinition = { city_prefix, city_suffix, country, + direction, postcode, state, state_abbr, |
