feat(i18n): 라이브 룸 하드코딩 문구를 I18n 키로 통일한다

This commit is contained in:
Yu Sung
2026-04-01 13:52:02 +09:00
parent 540238eb48
commit bceec46ebc
36 changed files with 571 additions and 324 deletions

View File

@@ -25,7 +25,7 @@ struct LiveRoomDonationMessageDialog: View {
VStack(spacing: 0) {
HStack(spacing: 0) {
Text("후원 히스토리")
Text(I18n.CreateLive.donationHistoryTitle)
.appFont(size: 14.7, weight: .bold)
.foregroundColor(Color(hex: "eeeeee"))
@@ -35,7 +35,7 @@ struct LiveRoomDonationMessageDialog: View {
Spacer()
Text("닫기")
Text(I18n.CreateLive.closeAction)
.appFont(size: 14.7, weight: .light)
.foregroundColor(Color(hex: "eeeeee"))
.onTapGesture { isShowing = false }
@@ -52,14 +52,14 @@ struct LiveRoomDonationMessageDialog: View {
}
.onTapGesture {
UIPasteboard.general.string = donationMessage.donationMessage
self.viewModel.errorMessage = "후원 히스토리가 복사되었습니다."
self.viewModel.errorMessage = I18n.CreateLive.donationHistoryCopied
self.viewModel.isShowPopup = true
}
}
}
.padding(.top, 18.7)
} else {
Text("후원 히스토리가 없습니다.")
Text(I18n.CreateLive.donationHistoryEmpty)
.appFont(size: 14.7, weight: .medium)
.foregroundColor(Color(hex: "eeeeee"))
.padding(.top, 30)