diff --git a/src/locales/el/location/county.ts b/src/locales/el/location/city_name.ts similarity index 100% rename from src/locales/el/location/county.ts rename to 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 7375aa8378a..ad43b68fc5c 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 5b284bd30c1..1c59f60005e 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, };