feat(i18n): 라이브 모듈 하드코딩 문구를 I18n 키로 통일한다
This commit is contained in:
@@ -17,7 +17,7 @@ struct SectionRecommendChannelView: View {
|
||||
var body: some View {
|
||||
VStack(spacing: 16) {
|
||||
HStack(spacing: 0) {
|
||||
Text("팔로잉 채널")
|
||||
Text(I18n.LiveNow.followingChannelsTitle)
|
||||
.appFont(size: 24, weight: .bold)
|
||||
.foregroundColor(.white)
|
||||
|
||||
@@ -55,7 +55,7 @@ struct SectionRecommendChannelView: View {
|
||||
)
|
||||
|
||||
if item.isOnAir {
|
||||
Text("Live")
|
||||
Text(I18n.LiveNow.liveBadge)
|
||||
.appFont(size: 8.7, weight: .bold)
|
||||
.foregroundColor(.white)
|
||||
.padding(.vertical, 2.7)
|
||||
@@ -87,7 +87,7 @@ struct SectionRecommendChannelView: View {
|
||||
.resizable()
|
||||
.frame(width: screenSize().width * 0.18, height: screenSize().width * 0.18, alignment: .center)
|
||||
|
||||
Text("더보기")
|
||||
Text(I18n.LiveNow.moreButton)
|
||||
.appFont(size: 14, weight: .regular)
|
||||
.foregroundColor(.white)
|
||||
.frame(width: screenSize().width * 0.18)
|
||||
|
||||
Reference in New Issue
Block a user