From c15da8efec3fc05d089bdf2dc1513183b614e04b Mon Sep 17 00:00:00 2001 From: seoahan <150299780+seoahan@users.noreply.github.com> Date: Tue, 13 May 2025 10:28:26 -0400 Subject: fix(locale): ko modified street_name to street_name_part (#3485) --- src/locales/ko/location/index.ts | 4 +- src/locales/ko/location/street_name.ts | 29 -------- src/locales/ko/location/street_name_part.ts | 106 ++++++++++++++++++++++++++++ src/locales/ko/location/street_pattern.ts | 2 +- src/locales/ko/location/street_suffix.ts | 15 +++- 5 files changed, 123 insertions(+), 33 deletions(-) delete mode 100644 src/locales/ko/location/street_name.ts create mode 100644 src/locales/ko/location/street_name_part.ts (limited to 'src') diff --git a/src/locales/ko/location/index.ts b/src/locales/ko/location/index.ts index b7c2f060..4c72814c 100644 --- a/src/locales/ko/location/index.ts +++ b/src/locales/ko/location/index.ts @@ -10,7 +10,7 @@ import postcode from './postcode'; import secondary_address from './secondary_address'; import state from './state'; import state_abbr from './state_abbr'; -import street_name from './street_name'; +import street_name_part from './street_name_part'; import street_pattern from './street_pattern'; import street_suffix from './street_suffix'; @@ -22,7 +22,7 @@ const location: LocationDefinition = { secondary_address, state, state_abbr, - street_name, + street_name_part, street_pattern, street_suffix, }; diff --git a/src/locales/ko/location/street_name.ts b/src/locales/ko/location/street_name.ts deleted file mode 100644 index a1c055f3..00000000 --- a/src/locales/ko/location/street_name.ts +++ /dev/null @@ -1,29 +0,0 @@ -export default [ - '상계', - '화곡', - '신정', - '목', - '잠실', - '면목', - '주안', - '중', - '정왕', - '구로', - '신월', - '연산', - '창', - '만수', - '중계', - '검단', - '상도', - '방배', - '장유', - '상', - '광명', - '신길', - '행신', - '대명', - '동탄', - '판교', - '연무', -]; diff --git a/src/locales/ko/location/street_name_part.ts b/src/locales/ko/location/street_name_part.ts new file mode 100644 index 00000000..ac9f6ad3 --- /dev/null +++ b/src/locales/ko/location/street_name_part.ts @@ -0,0 +1,106 @@ +export default [ + '가거리', + '능양', + '광명', + '구로', + '검단', + '나팔꽃', + '노들', + '남구청', + '능마루', + '대명', + '도덕동', + '덕구', + '동오리', + '동탄', + '둔산', + '뚝섬', + '매기', + '먼골', + '만수', + '면목', + '목', + '문현', + '밀월', + '반여울', + '방곡', + '방배', + '백장', + '병목골', + '볼무당', + '비월', + '상', + '상남', + '상계', + '상도', + '새꽃', + '신길', + '신월', + '신정', + '선원', + '소문', + '수죽', + '승달', + '신기중앙', + '신도시', + '아리산', + '안농', + '야월', + '어룡도', + '연무', + '연산', + '영암', + '예곡', + '오계화산', + '옥명', + '완도', + '용봉', + '운정', + '원당', + '원산중앙', + '위양', + '유섬', + '은행마을', + '이안천', + '입동', + '작점리', + '장안', + '점', + '조련', + '죽전앞', + '지곡', + '중', + '중계', + '정왕', + '잠실', + '장유', + '주안', + '창', + '창포', + '천을', + '초천', + '충정', + '큰들', + '큰길목', + '탑골', + '터미널', + '토정', + '판교', + '편항', + '평산남', + '평택항', + '푸름', + '피솔', + '하내천', + '하북산', + '학송', + '한림상', + '합천', + '향남', + '호수공원', + '황골', + '흥동', + '화곡', + '행신', + '힘찬', +]; diff --git a/src/locales/ko/location/street_pattern.ts b/src/locales/ko/location/street_pattern.ts index b5dd696c..10fe02fd 100644 --- a/src/locales/ko/location/street_pattern.ts +++ b/src/locales/ko/location/street_pattern.ts @@ -1 +1 @@ -export default ['{{location.street_name}}{{location.street_suffix}}']; +export default ['{{location.street_name_part}}{{location.street_suffix}}']; diff --git a/src/locales/ko/location/street_suffix.ts b/src/locales/ko/location/street_suffix.ts index 2db9c192..6081e6e8 100644 --- a/src/locales/ko/location/street_suffix.ts +++ b/src/locales/ko/location/street_suffix.ts @@ -1 +1,14 @@ -export default ['읍', '면', '동']; +export default [ + '대로', + '로', + '길', + '1길', + '2길', + '3길', + '4길', + '5길', + '6길', + '7길', + '8길', + '9길', +]; -- cgit v1.2.3