댓글 목록 문자열 리소스화

댓글/답글 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"