feat(i18n): 탐색 프로필 하드코딩 문구를 I18n 키로 통일한다

This commit is contained in:
Yu Sung
2026-04-01 14:40:37 +09:00
parent bceec46ebc
commit 038d66e363
39 changed files with 599 additions and 247 deletions

View File

@@ -23,11 +23,11 @@ struct UserProfileFanTalkAllView: View {
GeometryReader { proxy in
BaseView(isLoading: $viewModel.isLoading) {
VStack(spacing: 0) {
DetailNavigationBar(title: String(localized: "팬 Talk 전체보기"))
DetailNavigationBar(title: I18n.Explorer.fanTalkAllTitle)
VStack(alignment: .leading, spacing: 0) {
HStack(spacing: 6.7) {
Text("응원")
Text(I18n.Explorer.cheerTitle)
.appFont(size: 14.7, weight: .medium)
.foregroundColor(Color.grayee)
@@ -43,7 +43,7 @@ struct UserProfileFanTalkAllView: View {
.padding(.top, 13.3)
HStack(spacing: 0) {
TextField("응원댓글을 입력하세요", text: $cheersContent)
TextField(I18n.Explorer.cheerInputPlaceholder, text: $cheersContent)
.autocapitalization(.none)
.disableAutocorrection(true)
.appFont(size: 13.3, weight: .medium)
@@ -115,7 +115,7 @@ struct UserProfileFanTalkAllView: View {
}
}
} else {
Text("응원이 없습니다.\n\n처음으로 응원을 해보세요!")
Text(I18n.Explorer.cheerEmpty)
.appFont(size: 13.3, weight: .light)
.foregroundColor(Color.graybb)
.multilineTextAlignment(.center)