Skip to content

Commit 2ce8056

Browse files
authored
feat(locale): update Korean color, date, location, word, company (#1492)
1 parent ba5e29e commit 2ce8056

File tree

13 files changed

+501
-1
lines changed

13 files changed

+501
-1
lines changed

src/locales/ko/color/human.ts

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
export default [
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+
];

src/locales/ko/color/index.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* This file is automatically generated.
3+
* Run 'pnpm run generate:locales' to update.
4+
*/
5+
import type { ColorDefinitions } from '../../..';
6+
import human from './human';
7+
8+
const color: ColorDefinitions = {
9+
human,
10+
};
11+
12+
export default color;

src/locales/ko/company/suffix.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,12 @@
1-
export default ['연구소', '게임즈', '그룹', '전자', '물산', '코리아'];
1+
export default [
2+
'연구소',
3+
'게임즈',
4+
'그룹',
5+
'전자',
6+
'물산',
7+
'코리아',
8+
'공사',
9+
'증권',
10+
'은행',
11+
'중공업',
12+
];

src/locales/ko/date/index.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
* This file is automatically generated.
3+
* Run 'pnpm run generate:locales' to update.
4+
*/
5+
import type { DateDefinitions } from '../../..';
6+
import month from './month';
7+
import weekday from './weekday';
8+
9+
const date: DateDefinitions = {
10+
month,
11+
weekday,
12+
};
13+
14+
export default date;

src/locales/ko/date/month.ts

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
export default {
2+
wide: [
3+
'1월',
4+
'2월',
5+
'3월',
6+
'4월',
7+
'5월',
8+
'6월',
9+
'7월',
10+
'8월',
11+
'9월',
12+
'10월',
13+
'11월',
14+
'12월',
15+
],
16+
// Property "wide_context" is optional, if not set then "wide" will be used instead
17+
// It is used to specify a word in context, which may differ from a stand-alone word
18+
// wide_context: [],
19+
abbr: [
20+
'1월',
21+
'2월',
22+
'3월',
23+
'4월',
24+
'5월',
25+
'6월',
26+
'7월',
27+
'8월',
28+
'9월',
29+
'10월',
30+
'11월',
31+
'12월',
32+
],
33+
// Property "abbr_context" is optional, if not set then "abbr" will be used instead
34+
// It is used to specify a word in context, which may differ from a stand-alone word
35+
// abbr_context: [],
36+
};

src/locales/ko/date/weekday.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
export default {
2+
wide: ['일요일', '월요일', '화요일', '수요일', '목요일', '금요일', '토요일'],
3+
// Property "wide_context" is optional, if not set then "wide" will be used instead
4+
// It is used to specify a word in context, which may differ from a stand-alone word
5+
// wide_context: [],
6+
abbr: ['일', '월', '화', '수', '목', '금', '토'],
7+
// Property "abbr_context" is optional, if not set then "abbr" will be used instead
8+
// It is used to specify a word in context, which may differ from a stand-alone word
9+
// abbr_context: [],
10+
};

src/locales/ko/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,27 @@
33
* Run 'pnpm run generate:locales' to update.
44
*/
55
import type { LocaleDefinition } from '../..';
6+
import color from './color';
67
import company from './company';
8+
import date from './date';
79
import internet from './internet';
810
import location from './location';
911
import lorem from './lorem';
1012
import person from './person';
1113
import phone_number from './phone_number';
14+
import word from './word';
1215

1316
const ko: LocaleDefinition = {
1417
title: 'Korean',
18+
color,
1519
company,
20+
date,
1621
internet,
1722
location,
1823
lorem,
1924
person,
2025
phone_number,
26+
word,
2127
};
2228

2329
export default ko;

src/locales/ko/location/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import city from './city';
77
import city_name from './city_name';
88
import city_suffix from './city_suffix';
99
import postcode from './postcode';
10+
import secondary_address from './secondary_address';
1011
import state from './state';
1112
import state_abbr from './state_abbr';
1213
import street from './street';
@@ -18,6 +19,7 @@ const location: LocationDefinitions = {
1819
city_name,
1920
city_suffix,
2021
postcode,
22+
secondary_address,
2123
state,
2224
state_abbr,
2325
street,
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export default ['아파트 ###동', '###호'];

src/locales/ko/word/adjective.ts

Lines changed: 207 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,207 @@
1+
export default [
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+
'멍든',
65+
'메마른',
66+
'명확한',
67+
'모범적인',
68+
'무더운',
69+
'무서운',
70+
'무심한',
71+
'미친',
72+
'밀집한',
73+
'밝은',
74+
'방어',
75+
'방음',
76+
'버려진',
77+
'별개의',
78+
'복잡한',
79+
'부끄러운',
80+
'부담스러운',
81+
'부드러운',
82+
'부러워하는',
83+
'부정한',
84+
'부족한',
85+
'분명한',
86+
'분주한',
87+
'불결한',
88+
'불룩한',
89+
'불안한',
90+
'불충실한',
91+
'붐비는',
92+
'비뚤어진',
93+
'비싼',
94+
'비어 있는',
95+
'비참한',
96+
'빠른',
97+
'사랑스러운',
98+
'사랑하는',
99+
'사려 깊은',
100+
'사악한',
101+
'살아 있는',
102+
'상세한',
103+
'상쾌한',
104+
'생기 있는',
105+
'생분해성',
106+
'성실한',
107+
'세련된',
108+
'소름 끼치는',
109+
'솔직한',
110+
'순수한',
111+
'쉬운',
112+
'습한',
113+
'시원한',
114+
'신나는',
115+
'신뢰할 수 있는',
116+
'싼',
117+
'아름다운',
118+
'알고 있는',
119+
'약간의',
120+
'어느',
121+
'어두운',
122+
'어려운',
123+
'어리석은',
124+
'어색한',
125+
'어설픈',
126+
'어지러운',
127+
'억센',
128+
'엄청난',
129+
'역겨운',
130+
'열심히',
131+
'영리한',
132+
'예술적인',
133+
'예의 바른',
134+
'온화한',
135+
'완벽한',
136+
'외향적인',
137+
'용감한',
138+
'용기 있는',
139+
'우아한',
140+
'원통형',
141+
'위독한',
142+
'윙윙',
143+
'유리한',
144+
'유명한',
145+
'유익한',
146+
'유치한',
147+
'윤리적',
148+
'음침한',
149+
'의기 양양한',
150+
'의식하는',
151+
'이국적인',
152+
'이타적인',
153+
'인기 많은',
154+
'인정 많은',
155+
'일찍',
156+
'자신 있는',
157+
'잔혹한',
158+
'저명한',
159+
'저주받은',
160+
'적극적인',
161+
'적절한',
162+
'전통적인',
163+
'젊은',
164+
'정교한',
165+
'정통한',
166+
'정확한',
167+
'조잡한',
168+
'존경하는',
169+
'주의 깊은',
170+
'죽은',
171+
'즐거운',
172+
'지루한',
173+
'진지한',
174+
'짧은',
175+
'차가운',
176+
'창의적인',
177+
'철저한',
178+
'추운',
179+
'충실한',
180+
'치명적인',
181+
'친숙한',
182+
'친절한',
183+
'침착한',
184+
'쾌활한',
185+
'큰',
186+
'타원형의',
187+
'탄력 있는',
188+
'탈진한',
189+
'탐욕스러운',
190+
'통통한',
191+
'편안한',
192+
'품위 있는',
193+
'풍부한',
194+
'필수적인',
195+
'행복한',
196+
'향긋한',
197+
'혼란스러운',
198+
'화난',
199+
'화려한',
200+
'환상적',
201+
'활동적인',
202+
'활발한',
203+
'훌륭한',
204+
'흔한',
205+
'흥분한',
206+
'희미한',
207+
];

0 commit comments

Comments
 (0)