채널 상세 - 팔로워 수 천 단위 콤마 표시

This commit is contained in:
Yu Sung
2026-01-19 19:02:52 +09:00
parent d9861b4612
commit 4d893a2081
2 changed files with 2 additions and 2 deletions

View File

@@ -77,7 +77,7 @@ struct UserProfileView: View {
} }
} else { } else {
VStack(alignment: .leading, spacing: 9.3) { VStack(alignment: .leading, spacing: 9.3) {
Text(I18n.MemberChannel.followerCount(creatorProfile.creator.notificationRecipientCount)) Text(I18n.MemberChannel.followerCount(creatorProfile.creator.notificationRecipientCount.comma()))
.font(.custom(Font.preMedium.rawValue, size: 16)) .font(.custom(Font.preMedium.rawValue, size: 16))
.foregroundColor(Color.white) .foregroundColor(Color.white)
} }

View File

@@ -792,7 +792,7 @@ enum I18n {
static var menuSettings: String { pick(ko: "메뉴 설정", en: "Menu settings", ja: "メニュー設定") } static var menuSettings: String { pick(ko: "메뉴 설정", en: "Menu settings", ja: "メニュー設定") }
static var communityHeader: String { pick(ko: "커뮤니티", en: "Community", ja: "コミュニティ") } static var communityHeader: String { pick(ko: "커뮤니티", en: "Community", ja: "コミュニティ") }
static var followersList: String { pick(ko: "팔로워 리스트", en: "Followers list", ja: "フォロワーリスト") } static var followersList: String { pick(ko: "팔로워 리스트", en: "Followers list", ja: "フォロワーリスト") }
static var followerCount: (Int) -> String = { count in static var followerCount: (String) -> String = { count in
pick(ko: "팔로워 \(count)", en: "\(count) followers", ja: "フォロワー\(count)") pick(ko: "팔로워 \(count)", en: "\(count) followers", ja: "フォロワー\(count)")
} }