Skip to content

Commit

Permalink
feat(locale): improve zh_TW (#2320)
Browse files Browse the repository at this point in the history
  • Loading branch information
CoolPlayLin committed Aug 20, 2023
1 parent c158b38 commit c5dfe27
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_TW/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_TW/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_TW/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_TW/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_TW/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_TW/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@
* Run 'pnpm run generate:locales' to update.
*/
import type { LocaleDefinition } from '../..';
import color from './color';
import date from './date';
import location from './location';
import metadata from './metadata';
import person from './person';
import phone_number from './phone_number';

const zh_TW: LocaleDefinition = {
color,
date,
location,
metadata,
person,
Expand Down

0 comments on commit c5dfe27

Please sign in to comment.