Skip to content

Commit

Permalink
feat(locale): support color and date for zh_CN (#2223)
Browse files Browse the repository at this point in the history
  • Loading branch information
Flower-F committed Jun 25, 2023
1 parent bbda1d7 commit 6736cbf
Show file tree
Hide file tree
Showing 6 changed files with 93 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/locales/zh_CN/color/human.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
export default [
'红色',
'绿色',
'蓝色',
'黄色',
'紫色',
'薄荷绿色',
'蓝绿色',
'白色',
'黑色',
'橙色',
'粉红色',
'灰色',
'红褐色',
'蓝紫色',
'青绿色',
'棕褐色',
'天蓝色',
'浅橙色',
'紫红色',
'淡紫色',
'淡褐色',
'青柠色',
'乳白色',
'靛蓝色',
'金色',
'银色',
];
12 changes: 12 additions & 0 deletions src/locales/zh_CN/color/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { ColorDefinition } from '../../..';
import human from './human';

const color: ColorDefinition = {
human,
};

export default color;
14 changes: 14 additions & 0 deletions src/locales/zh_CN/date/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/*
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { DateDefinition } from '../../..';
import month from './month';
import weekday from './weekday';

const date: DateDefinition = {
month,
weekday,
};

export default date;
31 changes: 31 additions & 0 deletions src/locales/zh_CN/date/month.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
export default {
wide: [
'1月',
'2月',
'3月',
'4月',
'5月',
'6月',
'7月',
'8月',
'9月',
'10月',
'11月',
'12月',
],

abbr: [
'1月',
'2月',
'3月',
'4月',
'5月',
'6月',
'7月',
'8月',
'9月',
'10月',
'11月',
'12月',
],
};
4 changes: 4 additions & 0 deletions src/locales/zh_CN/date/weekday.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export default {
wide: ['星期天', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'],
abbr: ['周日', '周一', '周二', '周三', '周四', '周五', '周六'],
};
4 changes: 4 additions & 0 deletions src/locales/zh_CN/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,19 @@
* Run 'pnpm run generate:locales' to update.
*/
import type { LocaleDefinition } from '../..';
import color from './color';
import company from './company';
import date from './date';
import internet from './internet';
import location from './location';
import metadata from './metadata';
import person from './person';
import phone_number from './phone_number';

const zh_CN: LocaleDefinition = {
color,
company,
date,
internet,
location,
metadata,
Expand Down

0 comments on commit 6736cbf

Please sign in to comment.