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

@@ -132,7 +132,7 @@ struct LiveRoomProfileItemUserView: View {
Spacer()
if role == .LISTENER && isStaff {
Text("스피커로 초대")
Text(I18n.CreateLive.inviteSpeakerAction)
.appFont(size: 10, weight: .medium)
.foregroundColor(.white)
.padding(.horizontal, 5.5)
@@ -149,7 +149,7 @@ struct LiveRoomProfileItemUserView: View {
}
if role == .SPEAKER && (userId == UserDefaults.int(forKey: .userId) || isStaff) {
Text("리스너로 변경")
Text(I18n.CreateLive.changeListenerAction)
.appFont(size: 10, weight: .medium)
.foregroundColor(.white)
.padding(.horizontal, 5.5)
@@ -162,7 +162,7 @@ struct LiveRoomProfileItemUserView: View {
}
if role != .MANAGER && creatorId == UserDefaults.int(forKey: .userId) {
Text("채금")
Text(I18n.CreateLive.shortNoChattingAction)
.appFont(size: 10, weight: .medium)
.foregroundColor(.white)
.padding(.horizontal, 5.5)
@@ -206,7 +206,7 @@ struct LiveRoomProfileRequestSpeakerView: View {
HStack(spacing: 6.7) {
Spacer()
Image("ic_request_speak")
Text("스피커 요청하기")
Text(I18n.CreateLive.requestSpeakerAction)
.appFont(size: 13.3, weight: .bold)
.foregroundColor(.white)
Spacer()