diff options
| author | Matt Mayer <[email protected]> | 2023-05-02 16:02:49 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-05-02 09:02:49 +0000 |
| commit | 1cadfb97856da17047fcb5dcb504c3418eeed145 (patch) | |
| tree | cb87ff33f0e9909d54d5a3e1661935340a0c5620 /src/locales/el | |
| parent | e094a5a7b00bed7da3610bdbb949cc00320d5094 (diff) | |
| download | faker-1cadfb97856da17047fcb5dcb504c3418eeed145.tar.xz faker-1cadfb97856da17047fcb5dcb504c3418eeed145.zip | |
fix(locale): el county should be city_name (#2106)
Diffstat (limited to 'src/locales/el')
| -rw-r--r-- | src/locales/el/location/city_name.ts (renamed from src/locales/el/location/county.ts) | 0 | ||||
| -rw-r--r-- | src/locales/el/location/city_pattern.ts | 7 | ||||
| -rw-r--r-- | src/locales/el/location/index.ts | 4 |
3 files changed, 3 insertions, 8 deletions
diff --git a/src/locales/el/location/county.ts b/src/locales/el/location/city_name.ts index 05570a24..05570a24 100644 --- a/src/locales/el/location/county.ts +++ b/src/locales/el/location/city_name.ts diff --git a/src/locales/el/location/city_pattern.ts b/src/locales/el/location/city_pattern.ts index 7375aa83..ad43b68f 100644 --- a/src/locales/el/location/city_pattern.ts +++ b/src/locales/el/location/city_pattern.ts @@ -1,6 +1 @@ -export default [ - '{{location.city_prefix}} {{person.firstName}}{{location.city_suffix}}', - '{{location.city_prefix}} {{person.firstName}}', - '{{person.firstName}}{{location.city_suffix}}', - '{{person.lastName}}{{location.city_suffix}}', -]; +export default ['{{location.city_name}}']; diff --git a/src/locales/el/location/index.ts b/src/locales/el/location/index.ts index 5b284bd3..1c59f600 100644 --- a/src/locales/el/location/index.ts +++ b/src/locales/el/location/index.ts @@ -3,14 +3,14 @@ * Run 'pnpm run generate:locales' to update. */ import type { LocationDefinition } from '../../..'; +import city_name from './city_name'; import city_pattern from './city_pattern'; -import county from './county'; import default_country from './default_country'; import street_pattern from './street_pattern'; const location: LocationDefinition = { + city_name, city_pattern, - county, default_country, street_pattern, }; |
