검색 화면 하드 코딩된 텍스트 다국어 전환
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user