공지사항 페이지 개선 - 카테고리 필터 및 다국어 지원

- 공지사항 리스트/상세 페이지에 다국어(i18n) 적용
- 카테고리 선택 필터 기능 추가 (전체/공지/이벤트/서비스/중요)
- 검색창 Enter 키 지원 및 한글 입력 이슈 해결
- 검색/필터 실행 시 input 포커스 자동 해제

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jay Sheen
2025-09-18 10:54:29 +09:00
parent 71d5cd0d4c
commit 2910b20974
7 changed files with 71 additions and 18 deletions

View File

@@ -74,5 +74,18 @@
"status": "Status",
"completed": "Completed",
"failed": "Failed"
}
},
"support": {
"notice": {
"title": "Notice",
"searchPlaceholder": "Enter search keyword",
"categories": {
"ALL": "All",
"NOTICE": "Notice",
"EVENT": "Event",
"SERVICE": "Service",
"IMPORTANT": "Important"
}
}
}
}

View File

@@ -13,8 +13,8 @@ i18n
en: {translation: en},
ko: {translation: ko},
},
lng: 'en',
fallbackLng: 'en',
lng: 'ko',
fallbackLng: 'ko',
debug: true,
interpolation: {
escapeValue: false,

View File

@@ -74,5 +74,18 @@
"status": "상태",
"completed": "완료",
"failed": "실패"
}
},
"support": {
"notice": {
"title": "공지사항",
"searchPlaceholder": "검색어를 입력하세요",
"categories": {
"ALL": "전체",
"NOTICE": "공지",
"EVENT": "이벤트",
"SERVICE": "서비스",
"IMPORTANT": "중요"
}
}
}
}