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

@@ -19,14 +19,14 @@ struct RouletteSettingsOptionView: View {
var body: some View {
VStack(spacing: 6.7) {
HStack(spacing: 0) {
Text("옵션 \(index + 1)")
Text(I18n.CreateLive.rouletteOptionTitle(index))
.appFont(size: 14.7, weight: .medium)
.foregroundColor(Color(hex: "eeeeee"))
Spacer()
if index > 1 {
Text("삭제")
Text(I18n.CreateLive.rouletteDeleteAction)
.appFont(size: 14.7, weight: .medium)
.foregroundColor(Color(hex: "ff5c49"))
.onTapGesture { onClickDelete() }
@@ -34,7 +34,7 @@ struct RouletteSettingsOptionView: View {
}
HStack(spacing: 8) {
TextField("옵션을 입력하세요", text: $option.title)
TextField(I18n.CreateLive.rouletteOptionPlaceholder, text: $option.title)
.autocapitalization(.none)
.disableAutocorrection(true)
.appFont(size: 13.3, weight: .medium)