Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(locale): rename city_prefix to city_name for en_NG, en_ZA, en_AU_ocker #2111

Merged
merged 4 commits into from May 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/locales/en_AU_ocker/location/city_pattern.ts
@@ -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
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
2 changes: 1 addition & 1 deletion src/locales/en_NG/location/city_pattern.ts
@@ -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
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
2 changes: 1 addition & 1 deletion src/locales/en_ZA/location/city_pattern.ts
@@ -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
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