Skip to content

Commit 1cadfb9

Browse files
authored
fix(locale): el county should be city_name (#2106)
1 parent e094a5a commit 1cadfb9

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed
Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1 @@
1-
export default [
2-
'{{location.city_prefix}} {{person.firstName}}{{location.city_suffix}}',
3-
'{{location.city_prefix}} {{person.firstName}}',
4-
'{{person.firstName}}{{location.city_suffix}}',
5-
'{{person.lastName}}{{location.city_suffix}}',
6-
];
1+
export default ['{{location.city_name}}'];

src/locales/el/location/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
* Run 'pnpm run generate:locales' to update.
44
*/
55
import type { LocationDefinition } from '../../..';
6+
import city_name from './city_name';
67
import city_pattern from './city_pattern';
7-
import county from './county';
88
import default_country from './default_country';
99
import street_pattern from './street_pattern';
1010

1111
const location: LocationDefinition = {
12+
city_name,
1213
city_pattern,
13-
county,
1414
default_country,
1515
street_pattern,
1616
};

0 commit comments

Comments
 (0)