검색 화면 하드 코딩된 텍스트 다국어 전환

This commit is contained in:
Yu Sung
2026-01-23 05:27:26 +09:00
parent 9533b06d1e
commit 02d767d5d8
4 changed files with 45 additions and 17 deletions

View File

@@ -23,7 +23,7 @@ struct SearchUnifiedView: View {
VStack(spacing: 30) {
if !creatorList.isEmpty {
SearchUnifiedItemView(
title: "채널",
title: I18n.Search.tabCreator,
itemList: creatorList,
onTapMore: onTapMoreCreator
)
@@ -33,7 +33,7 @@ struct SearchUnifiedView: View {
if !contentList.isEmpty {
SearchUnifiedItemView(
title: "콘텐츠",
title: I18n.Search.tabContent,
itemList: contentList,
onTapMore: onTapMoreContent
)
@@ -43,7 +43,7 @@ struct SearchUnifiedView: View {
if !searchList.isEmpty {
SearchUnifiedItemView(
title: "시리즈",
title: I18n.Search.tabSeries,
itemList: searchList,
onTapMore: onTapMoreSeries
)
@@ -81,7 +81,7 @@ struct SearchUnifiedItemView: View {
}
}
Text("더보기 >")
Text(I18n.Search.more)
.appFont(size: 13.3, weight: .medium)
.foregroundColor(.grayee)
.padding(.vertical, 10)