File tree 24 files changed +68
-20
lines changed
24 files changed +68
-20
lines changed Original file line number Diff line number Diff line change 4
4
*/
5
5
import type { ColorDefinitions } from '../../..' ;
6
6
import human from './human' ;
7
- import space from './space' ;
8
7
9
8
const color : ColorDefinitions = {
10
9
human,
11
- space,
12
10
} ;
13
11
14
12
export default color ;
Original file line number Diff line number Diff line change 3
3
* Run 'pnpm run generate:locales' to update.
4
4
*/
5
5
import type { DatabaseDefinitions } from '../../..' ;
6
- import collation from './collation' ;
7
6
import column from './column' ;
8
- import engine from './engine' ;
9
- import type_ from './type' ;
10
7
11
8
const database : DatabaseDefinitions = {
12
- collation,
13
9
column,
14
- engine,
15
- type : type_ ,
16
10
} ;
17
11
18
12
export default database ;
Original file line number Diff line number Diff line change 3
3
* Run 'pnpm run generate:locales' to update.
4
4
*/
5
5
import type { HackerDefinitions } from '../../..' ;
6
- import abbreviation from './abbreviation' ;
7
6
import adjective from './adjective' ;
8
7
import ingverb from './ingverb' ;
9
8
import noun from './noun' ;
10
9
import phrase from './phrase' ;
11
10
import verb from './verb' ;
12
11
13
12
const hacker : HackerDefinitions = {
14
- abbreviation,
15
13
adjective,
16
14
ingverb,
17
15
noun,
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ import music from './music';
21
21
import person from './person' ;
22
22
import phone_number from './phone_number' ;
23
23
import science from './science' ;
24
- import system from './system' ;
25
24
import team from './team' ;
26
25
import vehicle from './vehicle' ;
27
26
import word from './word' ;
@@ -47,7 +46,6 @@ const en: LocaleDefinition = {
47
46
person,
48
47
phone_number,
49
48
science,
50
- system,
51
49
team,
52
50
vehicle,
53
51
word,
Original file line number Diff line number Diff line change @@ -7,14 +7,12 @@ import avatar_uri from './avatar_uri';
7
7
import domain_suffix from './domain_suffix' ;
8
8
import example_email from './example_email' ;
9
9
import free_email from './free_email' ;
10
- import http_status_code from './http_status_code' ;
11
10
12
11
const internet : InternetDefinitions = {
13
12
avatar_uri,
14
13
domain_suffix,
15
14
example_email,
16
15
free_email,
17
- http_status_code,
18
16
} ;
19
17
20
18
export default internet ;
Original file line number Diff line number Diff line change @@ -9,8 +9,6 @@ import city_name from './city_name';
9
9
import city_prefix from './city_prefix' ;
10
10
import city_suffix from './city_suffix' ;
11
11
import country from './country' ;
12
- import country_code from './country_code' ;
13
- import country_code_alpha_3 from './country_code_alpha_3' ;
14
12
import county from './county' ;
15
13
import default_country from './default_country' ;
16
14
import direction from './direction' ;
@@ -22,7 +20,6 @@ import state_abbr from './state_abbr';
22
20
import street from './street' ;
23
21
import street_address from './street_address' ;
24
22
import street_suffix from './street_suffix' ;
25
- import time_zone from './time_zone' ;
26
23
27
24
const location : LocationDefinitions = {
28
25
building_number,
@@ -31,8 +28,6 @@ const location: LocationDefinitions = {
31
28
city_prefix,
32
29
city_suffix,
33
30
country,
34
- country_code,
35
- country_code_alpha_3,
36
31
county,
37
32
default_country,
38
33
direction,
@@ -44,7 +39,6 @@ const location: LocationDefinitions = {
44
39
street,
45
40
street_address,
46
41
street_suffix,
47
- time_zone,
48
42
} ;
49
43
50
44
export default location ;
Original file line number Diff line number Diff line change
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.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
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.
File renamed without changes.
Original file line number Diff line number Diff line change
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 ;
Original file line number Diff line number Diff line change 3
3
* Run 'pnpm run generate:locales' to update.
4
4
*/
5
5
import type { LocaleDefinition } from '../..' ;
6
+ import color from './color' ;
7
+ import database from './database' ;
8
+ import hacker from './hacker' ;
6
9
import internet from './internet' ;
10
+ import location from './location' ;
11
+ import system from './system' ;
7
12
8
13
const global : LocaleDefinition = {
9
14
title : 'Global' ,
15
+ color,
16
+ database,
17
+ hacker,
10
18
internet,
19
+ location,
20
+ system,
11
21
} ;
12
22
13
23
export default global ;
File renamed without changes.
Original file line number Diff line number Diff line change 4
4
*/
5
5
import type { InternetDefinitions } from '../../..' ;
6
6
import emoji from './emoji' ;
7
+ import http_status_code from './http_status_code' ;
7
8
8
9
const internet : InternetDefinitions = {
9
10
emoji,
11
+ http_status_code,
10
12
} ;
11
13
12
14
export default internet ;
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
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.
File renamed without changes.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments