1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/*
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { LocaleDefinition } from '../..';
import airline from './airline';
import animal from './animal';
import app from './app';
import book from './book';
import cell_phone from './cell_phone';
import color from './color';
import commerce from './commerce';
import company from './company';
import database from './database';
import date from './date';
import finance from './finance';
import food from './food';
import hacker from './hacker';
import internet from './internet';
import location from './location';
import lorem from './lorem';
import metadata from './metadata';
import music from './music';
import person from './person';
import phone_number from './phone_number';
import science from './science';
import team from './team';
import vehicle from './vehicle';
import word from './word';
/**
* The locale data for the `en` locale.
*
* - Language: English
* - Endonym: English
*/
const en: LocaleDefinition = {
airline,
animal,
app,
book,
cell_phone,
color,
commerce,
company,
database,
date,
finance,
food,
hacker,
internet,
location,
lorem,
metadata,
music,
person,
phone_number,
science,
team,
vehicle,
word,
};
export default en;
|