fix(chat-room): 접근성 라벨 및 다국어 문자열 적용

- 레이아웃 contentDescription 하드코딩 제거 및 strings 리소스화
- ChatMessageAdapter 접근성 문구를 리소스 기반으로 변환
- values-en 추가로 안내/버튼/접근성/상태 문구 영문화
- 타이핑 인디케이터 접근성 라벨 추가
This commit is contained in:
2025-08-14 18:50:32 +09:00
parent c9b6623eac
commit c1012586ce
6 changed files with 61 additions and 16 deletions

View File

@@ -19,4 +19,19 @@
<string name="chat_input_placeholder">메세지를 입력하세요.</string>
<string name="action_send">전송</string>
<string name="action_retry">다시 전송</string>
<!-- Accessibility labels -->
<string name="a11y_profile_background">프로필 배경 이미지</string>
<string name="a11y_back">뒤로가기</string>
<string name="a11y_profile_image">프로필 이미지</string>
<string name="a11y_notice">안내</string>
<string name="a11y_collapse">접기</string>
<string name="a11y_ai_profile_image">AI 프로필 이미지</string>
<string name="a11y_typing">상대방이 입력 중</string>
<!-- Accessibility phrases for adapter -->
<string name="a11y_my_message_prefix">내 메시지</string>
<string name="a11y_message_word">메시지</string>
<string name="status_sending">전송 중</string>
<string name="status_failed">전송 실패</string>
<string name="status_sent">전송 완료</string>
</resources>