From 2ce8056cc5f1fa874447da6077338eb793663179 Mon Sep 17 00:00:00 2001 From: thilllon Date: Sat, 29 Oct 2022 07:04:55 +0900 Subject: [PATCH] feat(locale): update Korean color, date, location, word, company (#1492) --- src/locales/ko/color/human.ts | 27 +++ src/locales/ko/color/index.ts | 12 ++ src/locales/ko/company/suffix.ts | 13 +- src/locales/ko/date/index.ts | 14 ++ src/locales/ko/date/month.ts | 36 ++++ src/locales/ko/date/weekday.ts | 10 + src/locales/ko/index.ts | 6 + src/locales/ko/location/index.ts | 2 + src/locales/ko/location/secondary_address.ts | 1 + src/locales/ko/word/adjective.ts | 207 +++++++++++++++++++ src/locales/ko/word/adverb.ts | 47 +++++ src/locales/ko/word/index.ts | 16 ++ src/locales/ko/word/noun.ts | 111 ++++++++++ 13 files changed, 501 insertions(+), 1 deletion(-) create mode 100644 src/locales/ko/color/human.ts create mode 100644 src/locales/ko/color/index.ts create mode 100644 src/locales/ko/date/index.ts create mode 100644 src/locales/ko/date/month.ts create mode 100644 src/locales/ko/date/weekday.ts create mode 100644 src/locales/ko/location/secondary_address.ts create mode 100644 src/locales/ko/word/adjective.ts create mode 100644 src/locales/ko/word/adverb.ts create mode 100644 src/locales/ko/word/index.ts create mode 100644 src/locales/ko/word/noun.ts diff --git a/src/locales/ko/color/human.ts b/src/locales/ko/color/human.ts new file mode 100644 index 00000000000..49d2012ac47 --- /dev/null +++ b/src/locales/ko/color/human.ts @@ -0,0 +1,27 @@ +export default [ + '검은색', + '금색', + '난초색', + '노란색', + '라임색', + '마젠타', + '민트색', + '분홍색', + '빨간색', + '상아색', + '연보라색', + '연어색', + '옥색', + '올리브', + '은색', + '자두색', + '자주색', + '적갈색', + '주황색', + '청록색', + '초록색', + '푸른색', + '하늘색', + '하얀색', + '회색', +]; diff --git a/src/locales/ko/color/index.ts b/src/locales/ko/color/index.ts new file mode 100644 index 00000000000..79cc39f02f3 --- /dev/null +++ b/src/locales/ko/color/index.ts @@ -0,0 +1,12 @@ +/* + * This file is automatically generated. + * Run 'pnpm run generate:locales' to update. + */ +import type { ColorDefinitions } from '../../..'; +import human from './human'; + +const color: ColorDefinitions = { + human, +}; + +export default color; diff --git a/src/locales/ko/company/suffix.ts b/src/locales/ko/company/suffix.ts index 10b29c85334..c7523d1df67 100644 --- a/src/locales/ko/company/suffix.ts +++ b/src/locales/ko/company/suffix.ts @@ -1 +1,12 @@ -export default ['연구소', '게임즈', '그룹', '전자', '물산', '코리아']; +export default [ + '연구소', + '게임즈', + '그룹', + '전자', + '물산', + '코리아', + '공사', + '증권', + '은행', + '중공업', +]; diff --git a/src/locales/ko/date/index.ts b/src/locales/ko/date/index.ts new file mode 100644 index 00000000000..cd296b42a45 --- /dev/null +++ b/src/locales/ko/date/index.ts @@ -0,0 +1,14 @@ +/* + * This file is automatically generated. + * Run 'pnpm run generate:locales' to update. + */ +import type { DateDefinitions } from '../../..'; +import month from './month'; +import weekday from './weekday'; + +const date: DateDefinitions = { + month, + weekday, +}; + +export default date; diff --git a/src/locales/ko/date/month.ts b/src/locales/ko/date/month.ts new file mode 100644 index 00000000000..c5ba13e56a9 --- /dev/null +++ b/src/locales/ko/date/month.ts @@ -0,0 +1,36 @@ +export default { + wide: [ + '1월', + '2월', + '3월', + '4월', + '5월', + '6월', + '7월', + '8월', + '9월', + '10월', + '11월', + '12월', + ], + // Property "wide_context" is optional, if not set then "wide" will be used instead + // It is used to specify a word in context, which may differ from a stand-alone word + // wide_context: [], + abbr: [ + '1월', + '2월', + '3월', + '4월', + '5월', + '6월', + '7월', + '8월', + '9월', + '10월', + '11월', + '12월', + ], + // Property "abbr_context" is optional, if not set then "abbr" will be used instead + // It is used to specify a word in context, which may differ from a stand-alone word + // abbr_context: [], +}; diff --git a/src/locales/ko/date/weekday.ts b/src/locales/ko/date/weekday.ts new file mode 100644 index 00000000000..ad46f425754 --- /dev/null +++ b/src/locales/ko/date/weekday.ts @@ -0,0 +1,10 @@ +export default { + wide: ['일요일', '월요일', '화요일', '수요일', '목요일', '금요일', '토요일'], + // Property "wide_context" is optional, if not set then "wide" will be used instead + // It is used to specify a word in context, which may differ from a stand-alone word + // wide_context: [], + abbr: ['일', '월', '화', '수', '목', '금', '토'], + // Property "abbr_context" is optional, if not set then "abbr" will be used instead + // It is used to specify a word in context, which may differ from a stand-alone word + // abbr_context: [], +}; diff --git a/src/locales/ko/index.ts b/src/locales/ko/index.ts index 47bc6286da5..05aacdf0ca5 100644 --- a/src/locales/ko/index.ts +++ b/src/locales/ko/index.ts @@ -3,21 +3,27 @@ * 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 lorem from './lorem'; import person from './person'; import phone_number from './phone_number'; +import word from './word'; const ko: LocaleDefinition = { title: 'Korean', + color, company, + date, internet, location, lorem, person, phone_number, + word, }; export default ko; diff --git a/src/locales/ko/location/index.ts b/src/locales/ko/location/index.ts index 1a954b76598..3d3789970c1 100644 --- a/src/locales/ko/location/index.ts +++ b/src/locales/ko/location/index.ts @@ -7,6 +7,7 @@ import city from './city'; import city_name from './city_name'; import city_suffix from './city_suffix'; import postcode from './postcode'; +import secondary_address from './secondary_address'; import state from './state'; import state_abbr from './state_abbr'; import street from './street'; @@ -18,6 +19,7 @@ const location: LocationDefinitions = { city_name, city_suffix, postcode, + secondary_address, state, state_abbr, street, diff --git a/src/locales/ko/location/secondary_address.ts b/src/locales/ko/location/secondary_address.ts new file mode 100644 index 00000000000..bd9383b1b86 --- /dev/null +++ b/src/locales/ko/location/secondary_address.ts @@ -0,0 +1 @@ +export default ['아파트 ###동', '###호']; diff --git a/src/locales/ko/word/adjective.ts b/src/locales/ko/word/adjective.ts new file mode 100644 index 00000000000..00e16a3d461 --- /dev/null +++ b/src/locales/ko/word/adjective.ts @@ -0,0 +1,207 @@ +export default [ + '감정적인', + '같은', + '거대한', + '거창한', + '건조한', + '겁 없는', + '격렬한', + '결정적인', + '경솔한', + '경험한', + '고귀한', + '고급의', + '고대의', + '공정한', + '관심 있는', + '굉장한', + '교양 있는', + '교육받은', + '교활한', + '구부러진', + '굴곡진', + '굵은', + '권위 있는', + '귀여운', + '극적인', + '금발의', + '기민한', + '기분 좋은', + '기쁜', + '기초적인', + '깊은', + '깨끗한', + '깨진', + '끊임없는', + '끔찍한', + '나쁜', + '날씬한', + '냉담한', + '넓은 마음을 가진', + '놀라운', + '눈부신', + '눈이 먼', + '늙은', + '능숙한', + '다른', + '단조로운', + '단호한', + '닫힌', + '당황스러운', + '대담한', + '대량', + '더러운', + '동굴 같은', + '두려운', + '뛰어난', + '마른', + '막대한', + '맛있는', + '매력적인', + '매혹적인', + '먹을 수 있는', + '먼', + '멍든', + '메마른', + '명확한', + '모범적인', + '무더운', + '무서운', + '무심한', + '미친', + '밀집한', + '밝은', + '방어', + '방음', + '버려진', + '별개의', + '복잡한', + '부끄러운', + '부담스러운', + '부드러운', + '부러워하는', + '부정한', + '부족한', + '분명한', + '분주한', + '불결한', + '불룩한', + '불안한', + '불충실한', + '붐비는', + '비뚤어진', + '비싼', + '비어 있는', + '비참한', + '빠른', + '사랑스러운', + '사랑하는', + '사려 깊은', + '사악한', + '살아 있는', + '상세한', + '상쾌한', + '생기 있는', + '생분해성', + '성실한', + '세련된', + '소름 끼치는', + '솔직한', + '순수한', + '쉬운', + '습한', + '시원한', + '신나는', + '신뢰할 수 있는', + '싼', + '아름다운', + '알고 있는', + '약간의', + '어느', + '어두운', + '어려운', + '어리석은', + '어색한', + '어설픈', + '어지러운', + '억센', + '엄청난', + '역겨운', + '열심히', + '영리한', + '예술적인', + '예의 바른', + '온화한', + '완벽한', + '외향적인', + '용감한', + '용기 있는', + '우아한', + '원통형', + '위독한', + '윙윙', + '유리한', + '유명한', + '유익한', + '유치한', + '윤리적', + '음침한', + '의기 양양한', + '의식하는', + '이국적인', + '이타적인', + '인기 많은', + '인정 많은', + '일찍', + '자신 있는', + '잔혹한', + '저명한', + '저주받은', + '적극적인', + '적절한', + '전통적인', + '젊은', + '정교한', + '정통한', + '정확한', + '조잡한', + '존경하는', + '주의 깊은', + '죽은', + '즐거운', + '지루한', + '진지한', + '짧은', + '차가운', + '창의적인', + '철저한', + '추운', + '충실한', + '치명적인', + '친숙한', + '친절한', + '침착한', + '쾌활한', + '큰', + '타원형의', + '탄력 있는', + '탈진한', + '탐욕스러운', + '통통한', + '편안한', + '품위 있는', + '풍부한', + '필수적인', + '행복한', + '향긋한', + '혼란스러운', + '화난', + '화려한', + '환상적', + '활동적인', + '활발한', + '훌륭한', + '흔한', + '흥분한', + '희미한', +]; diff --git a/src/locales/ko/word/adverb.ts b/src/locales/ko/word/adverb.ts new file mode 100644 index 00000000000..6421274aefe --- /dev/null +++ b/src/locales/ko/word/adverb.ts @@ -0,0 +1,47 @@ +export default [ + '간단히', + '거꾸로', + '거만하게', + '거의', + '고요히', + '고의로', + '극진히', + '깊이', + '나중에', + '노하여', + '다소', + '다채롭게', + '대담하게', + '대체로', + '도전적으로', + '똑똑하게', + '마구', + '맹목적으로', + '면밀히', + '명랑하게', + '몹시', + '바르게', + '바쁘게', + '밝게', + '분명히', + '비정상적으로', + '빠르게', + '심하게', + '아름답게', + '어색하게', + '언제나', + '열심히', + '용감하게', + '우연히', + '유감스럽게', + '의심스럽게', + '자랑스럽게', + '잔인하게', + '즐겁게', + '지속적으로', + '천하게', + '쿨하게', + '행복하게', + '흥미롭게', + '희미하게', +]; diff --git a/src/locales/ko/word/index.ts b/src/locales/ko/word/index.ts new file mode 100644 index 00000000000..fe65880a4b8 --- /dev/null +++ b/src/locales/ko/word/index.ts @@ -0,0 +1,16 @@ +/* + * This file is automatically generated. + * Run 'pnpm run generate:locales' to update. + */ +import type { WordDefinitions } from '../../..'; +import adjective from './adjective'; +import adverb from './adverb'; +import noun from './noun'; + +const word: WordDefinitions = { + adjective, + adverb, + noun, +}; + +export default word; diff --git a/src/locales/ko/word/noun.ts b/src/locales/ko/word/noun.ts new file mode 100644 index 00000000000..e2caa2bf199 --- /dev/null +++ b/src/locales/ko/word/noun.ts @@ -0,0 +1,111 @@ +export default [ + '가입', + '경보', + '고뇌', + '고도', + '고문', + '골목', + '공군', + '공기', + '공적', + '공항', + '관리', + '관리자', + '광고', + '구급차', + '구실', + '나이', + '내세', + '놀람', + '농업', + '달력', + '대사', + '대수학', + '대안', + '대행사', + '도토리', + '동맹', + '동작', + '무정부주의자', + '반침', + '배당', + '배우', + '변경', + '별명', + '보적', + '보좌관', + '부사', + '분석', + '분석자', + '분위기', + '불쌍한', + '비행기', + '비행사', + '비행선', + '비행장', + '성인', + '성취', + '성취자', + '쇠붙이', + '술', + '승인', + '아드레날린', + '아마존', + '아몬드', + '악어', + '안건', + '알파벳', + '알파카', + '애프터셰이브', + '앨범', + '양', + '양자', + '어댑터', + '에어백', + '에이전트', + '에일', + '여배우', + '여진', + '여파', + '연산', + '예의', + '오후', + '옹호', + '외계인', + '용돈', + '유연', + '유추', + '음향학', + '응집', + '이점', + '일', + '적응', + '전능자', + '전진', + '제단', + '조언', + '조정', + '주소', + '즐거움', + '지원', + '진보', + '진술', + '진술서', + '출현', + '침략', + '탄약', + '탐닉', + '특사', + '합금', + '합의', + '항공기', + '항공료', + '항공편', + '해석학', + '행동', + '형용사', + '호박색', + '활동', + '활동가', + '활성화', +];