feat(i18n): 탐색 프로필 하드코딩 문구를 I18n 키로 통일한다
This commit is contained in:
@@ -18,7 +18,7 @@ struct ExplorerView: View {
|
||||
HStack(spacing: 0) {
|
||||
Image("ic_title_search_black")
|
||||
|
||||
TextField("채널명을 입력해 보세요", text: $viewModel.channel)
|
||||
TextField(I18n.Explorer.searchChannelPlaceholder, text: $viewModel.channel)
|
||||
.autocapitalization(.none)
|
||||
.disableAutocorrection(true)
|
||||
.appFont(size: 13.3, weight: .medium)
|
||||
@@ -72,7 +72,7 @@ struct ExplorerView: View {
|
||||
}
|
||||
}
|
||||
} else {
|
||||
Text("검색 결과가 없습니다.")
|
||||
Text(I18n.Explorer.searchEmptyResult)
|
||||
.appFont(size: 18.3, weight: .medium)
|
||||
.foregroundColor(.white)
|
||||
.padding(.top, 40)
|
||||
|
||||
Reference in New Issue
Block a user