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
|
/*
* 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 book from './book';
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 metadata from './metadata';
import music from './music';
import person from './person';
import phone_number from './phone_number';
import science from './science';
import vehicle from './vehicle';
import word from './word';
/**
* The locale data for the `zh_CN` locale.
*
* - Language: Chinese (China)
* - Endonym: 中文 (中国)
*/
const zh_CN: LocaleDefinition = {
airline,
animal,
book,
color,
commerce,
company,
database,
date,
finance,
food,
hacker,
internet,
location,
metadata,
music,
person,
phone_number,
science,
vehicle,
word,
};
export default zh_CN;
|