feat(i18n): 오디션 화면 하드코딩 문구를 I18n 키로 통일한다

This commit is contained in:
Yu Sung
2026-03-31 15:39:57 +09:00
parent 136bfc8eee
commit 222520d5e9
13 changed files with 406 additions and 87 deletions

View File

@@ -30,7 +30,7 @@ struct AuditionDetailView: View {
.frame(maxWidth: .infinity)
.cornerRadius(6.7)
Text("오디션 정보")
Text(I18n.Audition.Detail.informationTitle)
.appFont(size: 14.7, weight: .bold)
.foregroundColor(Color.grayee)
.padding(.top, 15)
@@ -38,7 +38,7 @@ struct AuditionDetailView: View {
ExpandableTextView(text: response.information)
.padding(.top, 13.3)
Text("오디션 캐릭터")
Text(I18n.Audition.Detail.characterTitle)
.appFont(size: 14.7, weight: .bold)
.foregroundColor(Color.grayee)
.padding(.top, 15)