Skip to content

Commit d41c2a6

Browse files
authored
Merge branch 'next' into test/latitude-precision-fix
2 parents 637f88e + a0fb69d commit d41c2a6

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed
Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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,
Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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,
Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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)