From 36d6b3ece79a4b2b6db3a1edbc91846dcdb0f54d Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Fri, 14 Aug 2026 18:53:28 +0900 Subject: [PATCH] =?UTF-8?q?fix(i18n):=20=EC=A0=84=EC=B2=B4=20=EC=88=98?= =?UTF-8?q?=EB=9F=89=20=ED=91=9C=EA=B8=B0=EB=A5=BC=20=EB=8B=A4=EA=B5=AD?= =?UTF-8?q?=EC=96=B4=ED=99=94=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Donation/Components/CreatorChannelDonationCountBar.swift | 2 +- .../FanTalk/Components/CreatorChannelFanTalkCountBar.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SodaLive/Sources/V2/CreatorChannel/Donation/Components/CreatorChannelDonationCountBar.swift b/SodaLive/Sources/V2/CreatorChannel/Donation/Components/CreatorChannelDonationCountBar.swift index 73a83535..92dd5449 100644 --- a/SodaLive/Sources/V2/CreatorChannel/Donation/Components/CreatorChannelDonationCountBar.swift +++ b/SodaLive/Sources/V2/CreatorChannel/Donation/Components/CreatorChannelDonationCountBar.swift @@ -5,7 +5,7 @@ struct CreatorChannelDonationCountBar: View { var body: some View { HStack(spacing: SodaSpacing.s4) { - Text("전체") + Text(I18n.CreatorChannelCommunity.totalLabel) .appFont(size: 16, weight: .medium) .foregroundColor(.white) diff --git a/SodaLive/Sources/V2/CreatorChannel/FanTalk/Components/CreatorChannelFanTalkCountBar.swift b/SodaLive/Sources/V2/CreatorChannel/FanTalk/Components/CreatorChannelFanTalkCountBar.swift index 47405ff4..c402f7c6 100644 --- a/SodaLive/Sources/V2/CreatorChannel/FanTalk/Components/CreatorChannelFanTalkCountBar.swift +++ b/SodaLive/Sources/V2/CreatorChannel/FanTalk/Components/CreatorChannelFanTalkCountBar.swift @@ -5,7 +5,7 @@ struct CreatorChannelFanTalkCountBar: View { var body: some View { HStack(spacing: SodaSpacing.s4) { - Text("전체") + Text(I18n.CreatorChannelCommunity.totalLabel) .appFont(size: 16, weight: .medium) .foregroundColor(.white)