From 4d893a2081672f73eb73866b320f9a419b5d5f79 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Mon, 19 Jan 2026 19:02:52 +0900 Subject: [PATCH] =?UTF-8?q?=EC=B1=84=EB=84=90=20=EC=83=81=EC=84=B8=20-=20?= =?UTF-8?q?=ED=8C=94=EB=A1=9C=EC=9B=8C=20=EC=88=98=20=EC=B2=9C=20=EB=8B=A8?= =?UTF-8?q?=EC=9C=84=20=EC=BD=A4=EB=A7=88=20=ED=91=9C=EC=8B=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/Explorer/Profile/UserProfileView.swift | 2 +- SodaLive/Sources/I18n/I18n.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SodaLive/Sources/Explorer/Profile/UserProfileView.swift b/SodaLive/Sources/Explorer/Profile/UserProfileView.swift index 0bc6ffd..506ca27 100644 --- a/SodaLive/Sources/Explorer/Profile/UserProfileView.swift +++ b/SodaLive/Sources/Explorer/Profile/UserProfileView.swift @@ -77,7 +77,7 @@ struct UserProfileView: View { } } else { 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)) .foregroundColor(Color.white) } diff --git a/SodaLive/Sources/I18n/I18n.swift b/SodaLive/Sources/I18n/I18n.swift index d03dc39..5e181dd 100644 --- a/SodaLive/Sources/I18n/I18n.swift +++ b/SodaLive/Sources/I18n/I18n.swift @@ -792,7 +792,7 @@ enum I18n { static var menuSettings: String { pick(ko: "메뉴 설정", en: "Menu settings", ja: "メニュー設定") } static var communityHeader: String { pick(ko: "커뮤니티", en: "Community", 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)人") }