fix(i18n): 팬레터 탭 빈 상태를 다국어화한다

This commit is contained in:
Yu Sung
2026-08-14 18:40:47 +09:00
parent d002920567
commit 2203fc9089
4 changed files with 75 additions and 15 deletions

View File

@@ -6,7 +6,7 @@ struct CreatorChannelFanTalkEmptyView: View {
var body: some View {
VStack(spacing: SodaSpacing.s20) {
Text("아직 응원이 없습니다.\n처음으로 크리에이터를 응원해 보세요!")
Text(I18n.CreatorChannelFanTalk.emptyMessage)
.appFont(size: 16, weight: .medium)
.foregroundColor(Color.gray500)
.multilineTextAlignment(.center)
@@ -22,14 +22,14 @@ struct CreatorChannelFanTalkEmptyView: View {
.scaledToFit()
.frame(width: 20, height: 20)
Text("응원 남기기")
Text(I18n.CreatorChannelFanTalk.writeAction)
.appFont(size: 16, weight: .medium)
.foregroundColor(.white)
.lineLimit(1)
}
.padding(.horizontal, SodaSpacing.s20)
.frame(height: 44)
.background(Color.soda400)
.background(Color.gray800)
.clipShape(Capsule())
}
.buttonStyle(.plain)