계정 권한 메뉴 이름에 다국어 지원 추가

- PermItem 타입에 menuNameEng 속성 추가
- 메뉴 권한 목록/아이템/페이지에서 현재 언어에 따라 메뉴 이름 선택
- 영어 번역 파일에 사용자 삭제 관련 번역 키 추가

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jay Sheen
2025-11-14 19:12:34 +09:00
parent 62ce138a5a
commit 756137e809
5 changed files with 32 additions and 6 deletions

View File

@@ -41,7 +41,11 @@ export interface UserAccountAuthWrapProps {
};
export interface PermItem {
menuId?: number;
parent?: number;
menuName?: string;
menuNameEng?: string;
iconFilePath?: string;
programPath?: string;
subMenu?: Array<PermItem>;
};
export interface UserAccountAuthPermListProps {