feat(i18n): 홈 화면 하드코딩 문구를 I18n 키로 통일한다

This commit is contained in:
Yu Sung
2026-04-01 11:33:26 +09:00
parent 7285c5367d
commit 201f4c8139
7 changed files with 105 additions and 49 deletions

View File

@@ -45,7 +45,7 @@ struct HomeCreatorRankingItemView: View {
Spacer()
if item.id != UserDefaults.int(forKey: .userId) {
Text(item.follow ? "팔로잉" : "팔로우")
Text(item.follow ? I18n.LiveRoom.following : I18n.LiveRoom.follow)
.appFont(size: 14, weight: .regular)
.padding(.vertical, 4)
.frame(maxWidth: .infinity)