캐릭터 상세 문자열 리소스화

CharacterDetail/갤러리 탭 다국어 리소스 추가

UiText로 오류 메시지 지역화 처리
This commit is contained in:
2025-12-01 17:00:26 +09:00
parent 4e0e6708e6
commit 3cf24c2ab6
12 changed files with 189 additions and 54 deletions

View File

@@ -170,7 +170,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/pretendard_bold"
android:text="[세계관 및 작품 소개]"
android:text="@string/character_detail_worldview_title"
android:textColor="@color/white"
android:textSize="16sp" />
@@ -209,7 +209,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/pretendard_regular"
android:text="더보기"
android:text="@string/read_more"
android:textColor="@color/color_607d8b"
android:textSize="14sp" />
</LinearLayout>
@@ -230,7 +230,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/pretendard_bold"
android:text="[원작]"
android:text="@string/character_detail_original_title"
android:textColor="@color/white"
android:textSize="16sp" />
@@ -256,7 +256,7 @@
android:background="@drawable/bg_round_corner_16_stroke_3bb9f1"
android:fontFamily="@font/pretendard_bold"
android:gravity="center"
android:text="원작 보러가기"
android:text="@string/character_detail_original_link"
android:textColor="@color/color_3bb9f1"
android:textSize="16sp" />
</LinearLayout>
@@ -276,7 +276,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/pretendard_bold"
android:text="[성격 및 특징]"
android:text="@string/character_detail_personality_title"
android:textColor="@color/white"
android:textSize="16sp" />
@@ -315,7 +315,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/pretendard_regular"
android:text="더보기"
android:text="@string/read_more"
android:textColor="@color/color_607d8b"
android:textSize="14sp" />
</LinearLayout>
@@ -339,7 +339,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/pretendard_bold"
android:text="⚠️ 캐릭터톡 대화 가이드"
android:text="@string/character_detail_chat_guide_title"
android:textColor="@color/color_b0bec5"
android:textSize="16sp" />
@@ -351,7 +351,7 @@
android:layout_marginTop="8dp"
android:fontFamily="@font/pretendard_regular"
android:lineSpacingExtra="4dp"
android:text="보이스온 AI캐릭터톡은 대화의 자유도가 높아 대화에 참여하는 당신은 누구든 될 수 있습니다.\n세계관 속 캐릭터로 대화를 하거나 새로운 인물로 캐릭터와 당신만의 스토리를 만들어보세요."
android:text="@string/character_detail_chat_guide_desc"
android:textColor="@color/color_7c7c80"
android:textSize="16sp" />
@@ -363,7 +363,7 @@
android:layout_marginTop="8dp"
android:fontFamily="@font/pretendard_regular"
android:lineSpacingExtra="4dp"
android:text="※ AI캐릭터톡은 오픈베타 서비스 중이며, 캐릭터의 대화가 어색하거나 불완전할 수 있습니다. 대화 초반에 캐릭터 붕괴가 느껴진다면 대화를 리셋하고 다시 시도해보세요."
android:text="@string/character_detail_chat_guide_notice"
android:textColor="@color/color_7c7c80"
android:textSize="14sp" />
</LinearLayout>
@@ -393,7 +393,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/pretendard_regular"
android:text="댓글"
android:text="@string/character_detail_comments_label"
android:textColor="@color/color_b0bec5"
android:textSize="16sp" />
@@ -479,7 +479,7 @@
android:layout_weight="1"
android:background="@android:color/transparent"
android:fontFamily="@font/pretendard_regular"
android:hint="댓글을 입력해보세요"
android:hint="@string/character_detail_comment_input_hint"
android:imeOptions="actionSend"
android:importantForAutofill="no"
android:inputType="textCapSentences|textMultiLine"
@@ -523,7 +523,7 @@
android:layout_height="wrap_content"
android:layout_weight="1"
android:fontFamily="@font/pretendard_bold"
android:text="장르의 다른 캐릭터"
android:text="@string/character_detail_other_characters_title"
android:textColor="@color/white"
android:textSize="26sp" />
</LinearLayout>
@@ -550,7 +550,7 @@
android:background="@drawable/bg_round_corner_16_solid_3bb9f1"
android:fontFamily="@font/pretendard_bold"
android:gravity="center"
android:text="대화하기"
android:text="@string/character_detail_chat_button"
android:textColor="@color/white"
android:textSize="16sp"
app:layout_constraintBottom_toBottomOf="parent"