From 3f71a0d5448b39749949e45d106e9decdf32507b Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Fri, 8 Nov 2024 23:20:19 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B9=84=EB=B0=80=ED=9B=84=EC=9B=90=20->=20?= =?UTF-8?q?=EB=B9=84=EB=B0=80=EB=AF=B8=EC=85=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Sources/Content/Detail/LiveRoomDonationDialogView.swift | 2 +- .../Sources/Live/Room/Chat/LiveRoomDonationChatItemView.swift | 2 +- SodaLive/Sources/Live/Room/LiveRoomViewModel.swift | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/SodaLive/Sources/Content/Detail/LiveRoomDonationDialogView.swift b/SodaLive/Sources/Content/Detail/LiveRoomDonationDialogView.swift index b3489bf..564df26 100644 --- a/SodaLive/Sources/Content/Detail/LiveRoomDonationDialogView.swift +++ b/SodaLive/Sources/Content/Detail/LiveRoomDonationDialogView.swift @@ -92,7 +92,7 @@ struct LiveRoomDonationDialogView: View { .resizable() .frame(width: 20, height: 20) - Text("비밀후원") + Text("비밀미션") .font(.custom(Font.medium.rawValue, size: 14.7)) .foregroundColor(isSecret ? Color.button : Color.grayee) } diff --git a/SodaLive/Sources/Live/Room/Chat/LiveRoomDonationChatItemView.swift b/SodaLive/Sources/Live/Room/Chat/LiveRoomDonationChatItemView.swift index c0e5751..45cf2ae 100644 --- a/SodaLive/Sources/Live/Room/Chat/LiveRoomDonationChatItemView.swift +++ b/SodaLive/Sources/Live/Room/Chat/LiveRoomDonationChatItemView.swift @@ -50,7 +50,7 @@ struct LiveRoomDonationChatItemView: View { .font(.system(size: 15)) .foregroundColor(Color(hex: "fdca2f")) - Text(chatMessage.chat.contains("비밀") ? "을 비밀후원하셨습니다.💰🪙" : "을 후원하셨습니다.💰🪙") + Text(chatMessage.chat.contains("비밀") ? "으로 비밀미션을 보냈습니다.💰🪙" : "을 후원하셨습니다.💰🪙") .font(.system(size: 15)) .foregroundColor(.white) } diff --git a/SodaLive/Sources/Live/Room/LiveRoomViewModel.swift b/SodaLive/Sources/Live/Room/LiveRoomViewModel.swift index 5adb28f..5daa638 100644 --- a/SodaLive/Sources/Live/Room/LiveRoomViewModel.swift +++ b/SodaLive/Sources/Live/Room/LiveRoomViewModel.swift @@ -468,7 +468,7 @@ final class LiveRoomViewModel: NSObject, ObservableObject { var rawMessage = "" if isSecret { - rawMessage = "\(can)캔을 비밀후원하셨습니다.💰🪙" + rawMessage = "\(can)캔으로 비밀미션을 보냈습니다.💰🪙" } else { rawMessage = "\(can)캔을 후원하셨습니다.💰🪙" }