Skip to content

Commit

Permalink
fix(locale): el county should be city_name (#2106)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewmayer committed May 2, 2023
1 parent e094a5a commit 1cadfb9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
File renamed without changes.
7 changes: 1 addition & 6 deletions src/locales/el/location/city_pattern.ts
Original file line number Diff line number Diff line change
@@ -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}}'];
4 changes: 2 additions & 2 deletions src/locales/el/location/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
Expand Down

0 comments on commit 1cadfb9

Please sign in to comment.