feat(i18n): 콘텐츠 상세/댓글 하드코딩 문구를 I18n 키로 통일한다

This commit is contained in:
Yu Sung
2026-04-01 16:50:56 +09:00
parent a90996603b
commit c039931f34
30 changed files with 503 additions and 202 deletions

View File

@@ -34,7 +34,7 @@ struct ContentDetailMenuView: View {
HStack(spacing: 13.3) {
Image(isPin ? "ic_pin_cancel" : "ic_pin")
Text(isPin ? "내 채널에 고정 취소" : "내 채널에 고정")
Text(isPin ? I18n.ContentDetail.Menu.unpinFromMyChannel : I18n.ContentDetail.Menu.pinToMyChannel)
.appFont(size: 16.7, weight: .medium)
.foregroundColor(.white)
@@ -51,7 +51,7 @@ struct ContentDetailMenuView: View {
HStack(spacing: 13.3) {
Image("ic_make_message")
Text("수정")
Text(I18n.ContentDetail.Menu.edit)
.appFont(size: 16.7, weight: .medium)
.foregroundColor(.white)
@@ -68,7 +68,7 @@ struct ContentDetailMenuView: View {
HStack(spacing: 13.3) {
Image("ic_trash_can")
Text("삭제")
Text(I18n.Common.delete)
.appFont(size: 16.7, weight: .medium)
.foregroundColor(.white)
@@ -83,7 +83,7 @@ struct ContentDetailMenuView: View {
}
} else {
HStack(spacing: 0) {
Text("신고")
Text(I18n.ContentDetail.Menu.report)
.appFont(size: 16.7, weight: .medium)
.foregroundColor(.white)