Skip to content

Commit b0cccb2

Browse files
committed
move more stuff to global
1 parent ac07bc6 commit b0cccb2

24 files changed

+68
-20
lines changed

src/locales/en/color/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@
44
*/
55
import type { ColorDefinitions } from '../../..';
66
import human from './human';
7-
import space from './space';
87

98
const color: ColorDefinitions = {
109
human,
11-
space,
1210
};
1311

1412
export default color;

src/locales/en/database/index.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,10 @@
33
* Run 'pnpm run generate:locales' to update.
44
*/
55
import type { DatabaseDefinitions } from '../../..';
6-
import collation from './collation';
76
import column from './column';
8-
import engine from './engine';
9-
import type_ from './type';
107

118
const database: DatabaseDefinitions = {
12-
collation,
139
column,
14-
engine,
15-
type: type_,
1610
};
1711

1812
export default database;

src/locales/en/hacker/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,13 @@
33
* Run 'pnpm run generate:locales' to update.
44
*/
55
import type { HackerDefinitions } from '../../..';
6-
import abbreviation from './abbreviation';
76
import adjective from './adjective';
87
import ingverb from './ingverb';
98
import noun from './noun';
109
import phrase from './phrase';
1110
import verb from './verb';
1211

1312
const hacker: HackerDefinitions = {
14-
abbreviation,
1513
adjective,
1614
ingverb,
1715
noun,

src/locales/en/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import music from './music';
2121
import person from './person';
2222
import phone_number from './phone_number';
2323
import science from './science';
24-
import system from './system';
2524
import team from './team';
2625
import vehicle from './vehicle';
2726
import word from './word';
@@ -47,7 +46,6 @@ const en: LocaleDefinition = {
4746
person,
4847
phone_number,
4948
science,
50-
system,
5149
team,
5250
vehicle,
5351
word,

src/locales/en/internet/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,12 @@ import avatar_uri from './avatar_uri';
77
import domain_suffix from './domain_suffix';
88
import example_email from './example_email';
99
import free_email from './free_email';
10-
import http_status_code from './http_status_code';
1110

1211
const internet: InternetDefinitions = {
1312
avatar_uri,
1413
domain_suffix,
1514
example_email,
1615
free_email,
17-
http_status_code,
1816
};
1917

2018
export default internet;

src/locales/en/location/index.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ import city_name from './city_name';
99
import city_prefix from './city_prefix';
1010
import city_suffix from './city_suffix';
1111
import country from './country';
12-
import country_code from './country_code';
13-
import country_code_alpha_3 from './country_code_alpha_3';
1412
import county from './county';
1513
import default_country from './default_country';
1614
import direction from './direction';
@@ -22,7 +20,6 @@ import state_abbr from './state_abbr';
2220
import street from './street';
2321
import street_address from './street_address';
2422
import street_suffix from './street_suffix';
25-
import time_zone from './time_zone';
2623

2724
const location: LocationDefinitions = {
2825
building_number,
@@ -31,8 +28,6 @@ const location: LocationDefinitions = {
3128
city_prefix,
3229
city_suffix,
3330
country,
34-
country_code,
35-
country_code_alpha_3,
3631
county,
3732
default_country,
3833
direction,
@@ -44,7 +39,6 @@ const location: LocationDefinitions = {
4439
street,
4540
street_address,
4641
street_suffix,
47-
time_zone,
4842
};
4943

5044
export default location;

src/locales/global/color/index.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* This file is automatically generated.
3+
* Run 'pnpm run generate:locales' to update.
4+
*/
5+
import type { ColorDefinitions } from '../../..';
6+
import space from './space';
7+
8+
const color: ColorDefinitions = {
9+
space,
10+
};
11+
12+
export default color;
File renamed without changes.

src/locales/global/database/index.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
* This file is automatically generated.
3+
* Run 'pnpm run generate:locales' to update.
4+
*/
5+
import type { DatabaseDefinitions } from '../../..';
6+
import collation from './collation';
7+
import engine from './engine';
8+
import type_ from './type';
9+
10+
const database: DatabaseDefinitions = {
11+
collation,
12+
engine,
13+
type: type_,
14+
};
15+
16+
export default database;
File renamed without changes.

src/locales/global/hacker/index.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* This file is automatically generated.
3+
* Run 'pnpm run generate:locales' to update.
4+
*/
5+
import type { HackerDefinitions } from '../../..';
6+
import abbreviation from './abbreviation';
7+
8+
const hacker: HackerDefinitions = {
9+
abbreviation,
10+
};
11+
12+
export default hacker;

src/locales/global/index.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,21 @@
33
* Run 'pnpm run generate:locales' to update.
44
*/
55
import type { LocaleDefinition } from '../..';
6+
import color from './color';
7+
import database from './database';
8+
import hacker from './hacker';
69
import internet from './internet';
10+
import location from './location';
11+
import system from './system';
712

813
const global: LocaleDefinition = {
914
title: 'Global',
15+
color,
16+
database,
17+
hacker,
1018
internet,
19+
location,
20+
system,
1121
};
1222

1323
export default global;

src/locales/global/internet/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44
*/
55
import type { InternetDefinitions } from '../../..';
66
import emoji from './emoji';
7+
import http_status_code from './http_status_code';
78

89
const internet: InternetDefinitions = {
910
emoji,
11+
http_status_code,
1012
};
1113

1214
export default internet;

src/locales/global/location/index.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
* This file is automatically generated.
3+
* Run 'pnpm run generate:locales' to update.
4+
*/
5+
import type { LocationDefinitions } from '../../..';
6+
import country_code from './country_code';
7+
import country_code_alpha_3 from './country_code_alpha_3';
8+
import time_zone from './time_zone';
9+
10+
const location: LocationDefinitions = {
11+
country_code,
12+
country_code_alpha_3,
13+
time_zone,
14+
};
15+
16+
export default location;
File renamed without changes.

0 commit comments

Comments
 (0)