Skip to content

Commit a0fb69d

Browse files
authored
fix(locale): rename city_prefix to city_name for en_NG, en_ZA, en_AU_ocker (#2111)
1 parent ec1ca12 commit a0fb69d

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export default ['{{location.city_prefix}}'];
1+
export default ['{{location.city_name}}'];

src/locales/en_AU_ocker/location/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
*/
55
import type { LocationDefinition } from '../../..';
66
import building_number from './building_number';
7+
import city_name from './city_name';
78
import city_pattern from './city_pattern';
8-
import city_prefix from './city_prefix';
99
import default_country from './default_country';
1010
import postcode from './postcode';
1111
import region from './region';
@@ -17,8 +17,8 @@ import street_suffix from './street_suffix';
1717

1818
const location: LocationDefinition = {
1919
building_number,
20+
city_name,
2021
city_pattern,
21-
city_prefix,
2222
default_country,
2323
postcode,
2424
region,
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export default ['{{location.city_prefix}}'];
1+
export default ['{{location.city_name}}'];

src/locales/en_NG/location/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
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 city_prefix from './city_prefix';
88
import default_country from './default_country';
99
import postcode from './postcode';
1010
import state from './state';
1111
import street_pattern from './street_pattern';
1212

1313
const location: LocationDefinition = {
14+
city_name,
1415
city_pattern,
15-
city_prefix,
1616
default_country,
1717
postcode,
1818
state,
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export default ['{{location.city_prefix}}'];
1+
export default ['{{location.city_name}}'];

src/locales/en_ZA/location/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
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 city_prefix from './city_prefix';
88
import default_country from './default_country';
99
import postcode from './postcode';
1010
import state from './state';
1111
import street_pattern from './street_pattern';
1212

1313
const location: LocationDefinition = {
14+
city_name,
1415
city_pattern,
15-
city_prefix,
1616
default_country,
1717
postcode,
1818
state,

0 commit comments

Comments
 (0)