댓글 목록 문자열 리소스화

댓글/답글 UI, 시간 포맷, 오류 문구 다국어 적용
This commit is contained in:
2025-12-01 17:15:59 +09:00
parent 3cf24c2ab6
commit 101c396ac2
15 changed files with 203 additions and 83 deletions

View File

@@ -23,7 +23,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingVertical="16dp"
android:text="신고"
android:text="@string/report_title"
android:textColor="@color/white"
android:textSize="18sp" />
@@ -32,7 +32,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingVertical="16dp"
android:text="삭제"
android:text="@string/confirm_delete_title"
android:textColor="#EF5350"
android:textSize="18sp" />
</LinearLayout>

View File

@@ -17,7 +17,7 @@
android:layout_height="wrap_content"
android:layout_marginStart="13.3dp"
android:fontFamily="@font/gmarket_sans_medium"
android:text="댓글"
android:text="@string/character_comment_title"
android:textColor="@color/white"
android:textSize="14.7sp"
app:layout_constraintBottom_toBottomOf="@+id/iv_close"
@@ -91,7 +91,7 @@
android:layout_weight="1"
android:background="@android:color/transparent"
android:fontFamily="@font/pretendard_regular"
android:hint="댓글을 입력해보세요"
android:hint="@string/character_comment_input_hint"
android:imeOptions="actionSend"
android:importantForAutofill="no"
android:inputType="textCapSentences|textMultiLine"

View File

@@ -19,7 +19,7 @@
android:drawablePadding="6.7dp"
android:fontFamily="@font/gmarket_sans_medium"
android:gravity="center_vertical"
android:text="답글"
android:text="@string/character_comment_reply_title"
android:textColor="@color/white"
android:textSize="14.7sp"
app:drawableStartCompat="@drawable/ic_back"
@@ -79,7 +79,7 @@
android:layout_weight="1"
android:background="@android:color/transparent"
android:fontFamily="@font/pretendard_regular"
android:hint="댓글을 입력해보세요"
android:hint="@string/character_comment_input_hint"
android:imeOptions="actionSend"
android:importantForAutofill="no"
android:inputType="textCapSentences|textMultiLine"

View File

@@ -73,7 +73,7 @@
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:fontFamily="@font/pretendard_bold"
android:text="답글 쓰기"
android:text="@string/character_comment_write_reply"
android:textColor="@color/color_3bb9f1"
android:textSize="14sp"
app:layout_constraintStart_toStartOf="@+id/tv_comment"

View File

@@ -194,6 +194,37 @@
<string name="character_gallery_purchase_confirm">Buy with %1$d cans</string>
<string name="character_gallery_load_error">Failed to load gallery info.</string>
<string name="character_gallery_purchase_failed">Failed to complete the purchase.</string>
<!-- Character comments -->
<string name="character_comment_title">Comments</string>
<string name="character_comment_reply_title">Replies</string>
<string name="character_comment_input_hint">@string/character_detail_comment_input_hint</string>
<string name="character_comment_write_reply">Write a reply</string>
<string name="character_comment_reply_count">%1$d replies</string>
<string name="character_comment_time_just_now">Just now</string>
<string name="character_comment_time_minutes">%1$d min ago</string>
<string name="character_comment_time_hours">%1$d hr ago</string>
<string name="character_comment_time_days">%1$d day ago</string>
<string name="character_comment_time_years">%1$d yr ago</string>
<string name="character_comment_error_empty">Please enter a message.</string>
<string name="character_comment_error_report_reason">Please enter a report reason.</string>
<string name="character_comment_report_submitted">Report submitted.</string>
<string name="character_comment_load_failed">@string/common_error_unknown</string>
<string name="character_comment_report_reason_commercial">Unwanted commercial content or spam</string>
<string name="character_comment_report_reason_child_abuse">Child abuse</string>
<string name="character_comment_report_reason_hate_or_violence">Hate speech or graphic violence</string>
<string name="character_comment_report_reason_terror">Promoting terrorism</string>
<string name="character_comment_report_reason_harassment">Harassment or bullying</string>
<string name="character_comment_report_reason_self_harm">Suicide or self-harm</string>
<string name="character_comment_report_reason_misinformation">Misinformation</string>
<string-array name="character_comment_report_reasons">
<item>@string/character_comment_report_reason_commercial</item>
<item>@string/character_comment_report_reason_child_abuse</item>
<item>@string/character_comment_report_reason_hate_or_violence</item>
<item>@string/character_comment_report_reason_terror</item>
<item>@string/character_comment_report_reason_harassment</item>
<item>@string/character_comment_report_reason_self_harm</item>
<item>@string/character_comment_report_reason_misinformation</item>
</string-array>
<string name="screen_character_tab_recent_title">Recent characters</string>
<string name="screen_character_tab_popular_title">Popular characters</string>
<string name="screen_character_tab_new_title">New characters</string>

View File

@@ -194,6 +194,37 @@
<string name="character_gallery_purchase_confirm">%1$dキャンで購入</string>
<string name="character_gallery_load_error">ギャラリー情報を読み込めませんでした。</string>
<string name="character_gallery_purchase_failed">購入に失敗しました。</string>
<!-- Character comments -->
<string name="character_comment_title">コメント</string>
<string name="character_comment_reply_title">返信</string>
<string name="character_comment_input_hint">@string/character_detail_comment_input_hint</string>
<string name="character_comment_write_reply">返信を書く</string>
<string name="character_comment_reply_count">返信 %1$d件</string>
<string name="character_comment_time_just_now">たった今</string>
<string name="character_comment_time_minutes">%1$d分前</string>
<string name="character_comment_time_hours">%1$d時間前</string>
<string name="character_comment_time_days">%1$d日前</string>
<string name="character_comment_time_years">%1$d年前</string>
<string name="character_comment_error_empty">内容を入力してください。</string>
<string name="character_comment_error_report_reason">通報理由を入力してください。</string>
<string name="character_comment_report_submitted">通報が受け付けられました。</string>
<string name="character_comment_load_failed">@string/common_error_unknown</string>
<string name="character_comment_report_reason_commercial">望まない商業コンテンツまたはスパム</string>
<string name="character_comment_report_reason_child_abuse">児童虐待</string>
<string name="character_comment_report_reason_hate_or_violence">ヘイトスピーチまたは露骨な暴力</string>
<string name="character_comment_report_reason_terror">テロの助長</string>
<string name="character_comment_report_reason_harassment">嫌がらせやいじめ</string>
<string name="character_comment_report_reason_self_harm">自殺や自傷行為</string>
<string name="character_comment_report_reason_misinformation">誤情報</string>
<string-array name="character_comment_report_reasons">
<item>@string/character_comment_report_reason_commercial</item>
<item>@string/character_comment_report_reason_child_abuse</item>
<item>@string/character_comment_report_reason_hate_or_violence</item>
<item>@string/character_comment_report_reason_terror</item>
<item>@string/character_comment_report_reason_harassment</item>
<item>@string/character_comment_report_reason_self_harm</item>
<item>@string/character_comment_report_reason_misinformation</item>
</string-array>
<string name="screen_character_tab_recent_title">最近話したキャラクター</string>
<string name="screen_character_tab_popular_title">人気キャラクター</string>
<string name="screen_character_tab_new_title">新着キャラクター</string>

View File

@@ -193,6 +193,37 @@
<string name="character_gallery_purchase_confirm">%1$d캔으로 구매</string>
<string name="character_gallery_load_error">갤러리 정보를 불러오지 못했습니다.</string>
<string name="character_gallery_purchase_failed">구매에 실패했습니다.</string>
<!-- Character comments -->
<string name="character_comment_title">댓글</string>
<string name="character_comment_reply_title">답글</string>
<string name="character_comment_input_hint">@string/character_detail_comment_input_hint</string>
<string name="character_comment_write_reply">답글 쓰기</string>
<string name="character_comment_reply_count">답글 %1$d개</string>
<string name="character_comment_time_just_now">방금전</string>
<string name="character_comment_time_minutes">%1$d분전</string>
<string name="character_comment_time_hours">%1$d시간전</string>
<string name="character_comment_time_days">%1$d일전</string>
<string name="character_comment_time_years">%1$d년전</string>
<string name="character_comment_error_empty">내용을 입력하세요</string>
<string name="character_comment_error_report_reason">신고 사유를 입력하세요</string>
<string name="character_comment_report_submitted">신고가 접수되었습니다.</string>
<string name="character_comment_load_failed">@string/common_error_unknown</string>
<string name="character_comment_report_reason_commercial">원치 않는 상업성 콘텐츠 또는 스팸</string>
<string name="character_comment_report_reason_child_abuse">아동 학대</string>
<string name="character_comment_report_reason_hate_or_violence">증오시 표현 또는 노골적인 폭력</string>
<string name="character_comment_report_reason_terror">테러 조장</string>
<string name="character_comment_report_reason_harassment">희롱 또는 괴롭힘</string>
<string name="character_comment_report_reason_self_harm">자살 또는 자해</string>
<string name="character_comment_report_reason_misinformation">잘못된 정보</string>
<string-array name="character_comment_report_reasons">
<item>@string/character_comment_report_reason_commercial</item>
<item>@string/character_comment_report_reason_child_abuse</item>
<item>@string/character_comment_report_reason_hate_or_violence</item>
<item>@string/character_comment_report_reason_terror</item>
<item>@string/character_comment_report_reason_harassment</item>
<item>@string/character_comment_report_reason_self_harm</item>
<item>@string/character_comment_report_reason_misinformation</item>
</string-array>
<string name="screen_character_tab_recent_title">최근 대화한 캐릭터</string>
<string name="screen_character_tab_popular_title">인기 캐릭터</string>
<string name="screen_character_tab_new_title">신규 캐릭터</string>