..
Viewing
index.ts
48 lines (46 loc) • 989.0 B
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 | import type { LocaleDefinition } from '../..';
import address from './address';
import animal from './animal';
import app from './app';
import business from './business';
import cell_phone from './cell_phone';
import commerce from './commerce';
import company from './company';
import database from './database';
import date from './date';
import finance from './finance';
import hacker from './hacker';
import internet from './internet';
import lorem from './lorem';
import music from './music';
import name from './name';
import phone_number from './phone_number';
import system from './system';
import team from './team';
import vehicle from './vehicle';
import word from './word';
const en: LocaleDefinition = {
title: 'English',
separator: ' & ',
address,
animal,
app,
business,
cell_phone,
commerce,
company,
database,
date,
finance,
hacker,
internet,
lorem,
music,
name,
phone_number,
system,
team,
vehicle,
word,
};
export default en;
|
|