fix(i18n): 후원 탭 빈 상태를 다국어화한다

This commit is contained in:
Yu Sung
2026-08-14 18:40:18 +09:00
parent 4b209dcd72
commit d002920567
4 changed files with 60 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ struct CreatorChannelDonationEmptyView: View {
var body: some View {
VStack(spacing: SodaSpacing.s20) {
Text("아직 후원이 없습니다.\n처음으로 크리에이터를 후원해 보세요!")
Text(I18n.CreatorChannelDonation.emptyMessage)
.appFont(size: 16, weight: .medium)
.foregroundColor(Color.gray500)
.multilineTextAlignment(.center)
@@ -22,7 +22,7 @@ struct CreatorChannelDonationEmptyView: View {
.scaledToFit()
.frame(width: 20, height: 20)
Text("후원하기")
Text(I18n.ContentDetail.DonationDialog.title)
.appFont(size: 16, weight: .medium)
.foregroundColor(.white)
.lineLimit(1)