feat(chat): 채팅 모듈 하드코딩 문구를 I18n 키로 통일한다

This commit is contained in:
Yu Sung
2026-03-31 16:30:48 +09:00
parent 222520d5e9
commit 47085dc1ca
27 changed files with 464 additions and 128 deletions

View File

@@ -51,7 +51,11 @@ struct ChatRoomView: View {
.lineLimit(1)
.truncationMode(.tail)
Text(viewModel.characterType.rawValue)
Text(
viewModel.characterType == .Clone
? I18n.Chat.Character.typeClone
: I18n.Chat.Character.typeCharacter
)
.appFont(size: 10, weight: .bold)
.foregroundColor(.white)
.padding(.horizontal, 4)
@@ -100,8 +104,8 @@ struct ChatRoomView: View {
Text(
viewModel.characterType == .Character
? "보이스온 AI캐릭터톡은 대화의 자유도가 높아 대화에 참여하는 당신은 누구든 될 수 있습니다.\n세계관 속 캐릭터로 대화를 하거나 새로운 인물로 캐릭터와 당신만의 스토리를 만들어보세요.\n※ AI캐릭터톡은 오픈베타 서비스 중이며, 캐릭터의 대화가 어색하거나 불완전할 수 있습니다."
: "AI Clone은 크리에이터의 정보를 기반으로 대화하지만, 모든 정보를 완벽하게 반영하거나 실제 대화와 일치하지 않을 수 있습니다."
? I18n.Chat.Room.noticeForCharacter
: I18n.Chat.Room.noticeForClone
)
.appFont(size: 12, weight: .regular)
.foregroundColor(.white)
@@ -186,7 +190,7 @@ struct ChatRoomView: View {
HStack(spacing: 0) {
ZStack(alignment: .leading) {
if viewModel.messageText.isEmpty {
Text("메시지를 입력하세요.")
Text(I18n.Chat.Room.messagePlaceholder)
.appFont(size: 14, weight: .regular)
.foregroundColor(Color(hex: "78909C"))
}
@@ -289,7 +293,7 @@ struct ChatRoomView: View {
ActivityIndicatorView()
.frame(width: 100, height: 100)
Text("대화 초기화 중...")
Text(I18n.Chat.Room.resettingMessage)
}
}
.frame(maxWidth: .infinity, maxHeight: .infinity)