fix(donation): 후원 문구에 다국어를 적용한다

This commit is contained in:
Yu Sung
2026-08-26 13:18:27 +09:00
parent e46198f87a
commit e3642b3f1b
6 changed files with 267 additions and 8 deletions

View File

@@ -7,7 +7,7 @@ struct CreatorChannelDonationRankingSection: View {
var body: some View {
if rankings.isEmpty == false {
VStack(alignment: .leading, spacing: SodaSpacing.s14) {
Text("후원 랭킹")
Text(I18n.Explorer.donationRankingTitle)
.appFont(size: 20, weight: .bold)
.foregroundColor(.white)
.frame(maxWidth: .infinity, alignment: .leading)
@@ -19,7 +19,7 @@ struct CreatorChannelDonationRankingSection: View {
}
Button(action: onTapViewAll) {
Text("전체보기")
Text(I18n.CreatorChannelHome.viewAll)
.appFont(size: 16, weight: .medium)
.foregroundColor(.white)
.frame(maxWidth: .infinity)