Skip to content

Commit

Permalink
fix(locale): rename city_prefix to city_name for en_NG, en_ZA, en_AU_…
Browse files Browse the repository at this point in the history
…ocker (#2111)
  • Loading branch information
matthewmayer authored May 1, 2023
1 parent ec1ca12 commit a0fb69d
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/locales/en_AU_ocker/location/city_pattern.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default ['{{location.city_prefix}}'];
export default ['{{location.city_name}}'];
4 changes: 2 additions & 2 deletions src/locales/en_AU_ocker/location/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
*/
import type { LocationDefinition } from '../../..';
import building_number from './building_number';
import city_name from './city_name';
import city_pattern from './city_pattern';
import city_prefix from './city_prefix';
import default_country from './default_country';
import postcode from './postcode';
import region from './region';
Expand All @@ -17,8 +17,8 @@ import street_suffix from './street_suffix';

const location: LocationDefinition = {
building_number,
city_name,
city_pattern,
city_prefix,
default_country,
postcode,
region,
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/locales/en_NG/location/city_pattern.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default ['{{location.city_prefix}}'];
export default ['{{location.city_name}}'];
4 changes: 2 additions & 2 deletions src/locales/en_NG/location/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
* Run 'pnpm run generate:locales' to update.
*/
import type { LocationDefinition } from '../../..';
import city_name from './city_name';
import city_pattern from './city_pattern';
import city_prefix from './city_prefix';
import default_country from './default_country';
import postcode from './postcode';
import state from './state';
import street_pattern from './street_pattern';

const location: LocationDefinition = {
city_name,
city_pattern,
city_prefix,
default_country,
postcode,
state,
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/locales/en_ZA/location/city_pattern.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default ['{{location.city_prefix}}'];
export default ['{{location.city_name}}'];
4 changes: 2 additions & 2 deletions src/locales/en_ZA/location/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
* Run 'pnpm run generate:locales' to update.
*/
import type { LocationDefinition } from '../../..';
import city_name from './city_name';
import city_pattern from './city_pattern';
import city_prefix from './city_prefix';
import default_country from './default_country';
import postcode from './postcode';
import state from './state';
import street_pattern from './street_pattern';

const location: LocationDefinition = {
city_name,
city_pattern,
city_prefix,
default_country,
postcode,
state,
Expand Down

0 comments on commit a0fb69d

Please sign in to comment.