설정 페이지 및 관련 컴포넌트 다국어(localization) 적용

- 설정 페이지 전체 텍스트 다국어 지원
- 로그인 방식 선택 bottom sheet 다국어 적용
- 서비스 언어 선택 bottom sheet 다국어 적용
- 앱브리지에서 언어 설정 조회 기능 추가
- 페이지 로드 시 앱브리지 언어 설정으로 초기화
- AppLanguage enum 값 변경 (KO/EN → ko/en)

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jay Sheen
2025-10-28 13:15:09 +09:00
parent e125a73228
commit 95cc870dbc
8 changed files with 203 additions and 77 deletions

View File

@@ -2,9 +2,9 @@ import { PATHS } from "@/shared/constants/paths";
import { SortTypeKeys } from "./types";
export const APP_LANGUAGE = {
DEVICE: '기기 설정 언어',
KO: '한국어',
EN: 'ENGLISH',
// DEVICE: '기기 설정 언어',
ko: '한국어',
en: 'English',
};
export const APP_LOGIN_TYPE = {
ID: 'ID/PW 입력',

View File

@@ -1,7 +1,7 @@
export enum AppLanguage {
DEVICE = 'DEVICE',
KO = 'KO',
EN = 'EN'
// DEVICE = 'DEVICE',
KO = 'ko',
EN = 'en'
};
export enum LoginType {
ID = 'ID',